﻿/* Site header styles: public/assets/css/website-shell.css */

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1591511275801-33957be4e935?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    padding: 80px 0 40px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 29, 61, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 2;
}

.hero > * {
    position: relative;
    z-index: 3;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.98);
    /*background-image: url('https://fastgatewaytravel.com/public/img/header.jpeg')*/
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.nav-tabs {
    border-bottom: none;
    background: transparent;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.nav-tabs .nav-link {
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
    margin: 0 1px;
    font-size: 13px;
    min-width: 90px;
    text-align: center;
}

.nav-tabs .nav-link.active {
    background: var(--secondary-color);
    color: white;
}

.nav-tabs .nav-link:hover:not(.active) {
    background: #002a5c;
}

.tab-content {
    padding: 15px 20px;
    background: white;
}

/* Form fields */
.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 500;
    font-size: 12px;
    transition: var(--transition);
    height: 32px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.1rem rgba(0,29,61,0.1);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 12px;
}

.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    align-items: center;
    flex-direction: row;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
}

.radio-item input[type="radio"] {
    margin: 0;
    width: 14px;
    height: 14px;
}

.radio-item label {
    margin: 0;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
}

.flight-info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    margin-right: 10px;
}

.flight-info-item i {
    font-size: 12px;
}

.flight-info-item span {
    font-size: 12px;
}

.currency-selector-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
}

.form-select-inline {
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1px 3px;
    outline: none;
}

.form-select-inline:focus {
    outline: none;
    box-shadow: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 5;
    font-size: 12px;
}

.input-with-icon input {
    padding-left: 28px;
    font-size: 12px;
}

.btn-search {
    background: #1976d2;
    border: none;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    font-size: 12px;
    height: 32px;
    white-space: nowrap;
}

.btn-search:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.exchange-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 12px;
    padding: 0;
    margin: 0 2px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.exchange-btn:hover {
    color: var(--secondary-color);
    transform: rotate(180deg);
}

.checkbox-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    background: rgba(0,29,61,0.02);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-size: 12px;
    font-weight: 500;
}

.checkbox-item:hover {
    border-color: var(--primary-color);
    background: rgba(0,29,61,0.02);
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    width: 14px;
    height: 14px;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--primary-color);
    font-weight: 600;
}

.dynamic-section {
    margin-top: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.dynamic-section.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 6px;
    display: inline-block;
}

.hotel-block {
    border: 1px dashed #ccc;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    position: relative;
    background: white;
    transition: var(--transition);
}

.hotel-block:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.add-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}

.add-btn:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #dc3545;
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.btn-reset {
    background: #6c757d;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    margin-right: 8px;
    font-size: 12px;
    transition: var(--transition);
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-calculate {
    background: var(--secondary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}

.btn-calculate:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ddd;
    font-size: 12px;
}

/* Required field asterisk */
.required-field::after {
    content: '*';
    color: #dc3545;
    margin-left: 2px;
}

/* Book Now / WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

/* Section Styles */
.section-spacing {
    padding: 56px 0;
}

.section-header {
    margin-bottom: 28px;
}

.section-title-main {
    position: relative;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-transform: none;
}

.section-subtitle {
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.65;
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Destination Card */
.destination-card {
    transition: all 0.3s ease;
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

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

.price {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Package Card */
.package-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.package-card .card-body {
    padding: 14px;
}

.package-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 10px;
    text-transform: none;
}

.package-card .package-price {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 0 14px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 4px 4px 0;
}

.package-price-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    padding-right: 10px;
    border-right: 1px solid #dee2e6;
    text-transform: none;
    letter-spacing: normal;
}

.package-card .package-price-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.package-card .btn-primary {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin: 0;
}

.package-card .btn-primary:hover,
.package-card .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
    transform: none;
    box-shadow: none;
}

.card.package-card:hover {
    transform: none;
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Hotel Card */
.hotel-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.card.hotel-card:hover {
    transform: none;
}

.hotel-card .card-body {
    padding: 14px;
}

.hotel-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: normal;
}

.hotel-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 29, 61, 0.85);
    color: #ff9900;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1;
}

.hotel-rating i {
    font-size: 10px;
}

.hotel-rating--label {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hotel-location {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 10px;
}

.hotel-location i {
    color: var(--secondary-color);
    font-size: 12px;
}

.hotel-card .package-price {
    margin-bottom: 12px;
}

.hotel-card .btn-primary {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.hotel-card .btn-primary:hover,
.hotel-card .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
    transform: none;
    box-shadow: none;
}

/* Vehicle / Transport Card */
.vehicle-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.card.vehicle-card:hover {
    transform: none;
}

.vehicle-card .card-body {
    padding: 14px;
}

.vehicle-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 8px;
    text-transform: none;
}

.vehicle-image {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-capacity {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 29, 61, 0.88);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 1.3;
    max-width: calc(100% - 20px);
}

.vehicle-features {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.vehicle-features li {
    position: relative;
    padding: 0 0 0 16px;
    margin: 0 0 5px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.vehicle-features li:last-child {
    margin-bottom: 0;
}

.vehicle-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.vehicle-card .package-price {
    margin-bottom: 12px;
}

.vehicle-card .btn-primary {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.vehicle-card .btn-primary:hover,
.vehicle-card .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
    transform: none;
    box-shadow: none;
}

/* Services Section â€” aligned with package/hotel card language */
.service-card {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    padding: 22px 18px 20px;
    text-align: center;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    border-color: #ff9900;
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.18);
}

.service-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff9900;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(255, 153, 0, 0.35);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-card-icon {
    background: #ff9900;
    box-shadow: 0 6px 18px rgba(255, 153, 0, 0.45);
    transform: scale(1.05);
}

.service-card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.35;
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: normal;
}

.service-card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid #e9ecef;
}

.newsletter-panel {
    max-width: 720px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 29, 61, 0.05);
}

.newsletter-panel-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #ff9900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.newsletter-panel .section-header {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
        align-items: stretch;
    }
}

.newsletter-input {
    flex: 1 1 auto;
    min-width: 0;
}

.newsletter-btn {
    flex-shrink: 0;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .newsletter-btn {
        width: 100%;
    }
}

.newsletter-section .btn-primary:hover,
.newsletter-section .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
    transform: none;
    box-shadow: none;
}

.badge {
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Footer */
.site-footer {
    background-color: rgb(0, 29, 61);
}

.site-footer__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: none;
}

.site-footer__links li {
    margin-bottom: 0.55rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #ff9900;
}

.site-footer__branches li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 0.55rem;
}

.site-footer__contact li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.site-footer__contact i {
    color: #ff9900;
    margin-top: 3px;
    flex-shrink: 0;
}

.site-footer__contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.site-footer__contact a:hover {
    color: #ff9900;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.site-footer__social a:hover {
    background: #ff9900;
    color: #fff;
    transform: translateY(-2px);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #002a5c;
    border-color: #002a5c;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}
  .page-header {
    background: url('https://images.unsplash.com/photo-1564769625392-651b2ddf3c5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    padding: 60px 0;
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 29, 61, 0.65);
    z-index: 1;
    pointer-events: none;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 2;
}

.page-header > * {
    position: relative;
    z-index: 3;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}
 /* Contact Section */
.contact-container {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 40px;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-subheading {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 25px;
}

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

.contact-form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.contact-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,29,61,0.1);
}

textarea.contact-form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.contact-form-btn:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,153,0,0.3);
}

.contact-info-wrapper {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,29,61,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-text {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.contact-info-text a {
    color: var(--medium-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--secondary-color);
}

       

.branch-container {
    margin-bottom: 60px;
}

.branch-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.branch-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.branch-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.branch-map {
    height: 180px;
    width: 100%;
    position: relative;
}

.branch-content {
    padding: 20px;
}

.branch-location {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.branch-location i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.branch-address {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.branch-phone {
    font-size: 0.9rem;
    color: var(--medium-text);
    display: flex;
    align-items: center;
}

.branch-phone i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.branch-phone a {
    color: var(--medium-text);
    text-decoration: none;
    transition: var(--transition);
}

.branch-phone a:hover {
    color: var(--secondary-color);
}
.branch-phone a:hover {
    color: var(--secondary-color);
}

/* Package / hotel detail pages */
.package-detail-hero-wrap {
    background: #f8f9fa;
    padding-top: 12px;
}

.package-detail-breadcrumb {
    padding: 8px 0 14px;
}

.package-detail-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.package-detail-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.package-detail-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.package-detail-breadcrumb .breadcrumb-item.active {
    color: #64748b;
}

.package-detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

.package-detail-hero {
    position: relative;
    min-height: 280px;
    max-height: 460px;
    overflow: hidden;
    background: var(--primary-color);
}

.package-detail-hero--plain {
    min-height: 220px;
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
}

.package-detail-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-detail-hero__overlay {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    padding: 48px 0 36px;
    background: linear-gradient(to top, rgba(0, 29, 61, 0.92) 0%, rgba(0, 29, 61, 0.55) 45%, rgba(0, 29, 61, 0.15) 100%);
}

.package-detail-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
    text-transform: none;
}

.package-detail-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px;
}

.package-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-meta-badges--hero .package-meta-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(4px);
}

.package-meta-badges--hero .package-meta-badge i {
    color: var(--secondary-color);
}

.package-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f6f9;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.package-meta-badge i {
    color: var(--secondary-color);
    font-size: 12px;
}

.package-detail-page {
    padding: 32px 0 56px;
}

.package-detail-page__grid {
    align-items: flex-start;
}

.package-detail-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.package-detail-section {
    padding: 28px 28px 8px;
}

.package-detail-section--gallery {
    padding-top: 8px;
    border-top: 1px solid #eef2f6;
    padding-bottom: 28px;
}

.package-detail-section__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px;
    padding-left: 14px;
    border-left: 4px solid var(--secondary-color);
    text-transform: none;
}

.package-empty-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 24px 28px;
    color: #475569;
}

.package-empty-notice i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 2px;
}

.package-empty-notice p {
    margin: 0;
}

.package-gallery-block {
    margin-bottom: 1.75rem;
}

.package-gallery-block:last-child {
    margin-bottom: 0;
}

.package-related-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.package-related-location {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px;
}

.package-related-location i {
    color: var(--secondary-color);
    margin-right: 4px;
}

/* Booking sidebar panel */
.package-booking-panel {
    position: sticky;
    top: 90px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 29, 61, 0.08);
}

.package-booking-panel__header {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 20px;
}

.package-booking-panel__heading {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
    text-transform: none;
}

.package-booking-panel__package-name {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.4;
}

.package-booking-panel__body {
    padding: 20px;
}

.package-booking-panel__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 4px 4px 0;
}

.package-booking-panel__price-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    padding-right: 10px;
    border-right: 1px solid #dee2e6;
}

.package-booking-panel__price-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.package-booking-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.btn-enquire-orange {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 11px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-enquire-orange:hover,
.btn-enquire-orange:focus {
    background: #e68a00;
    color: #fff;
}

.btn-whatsapp-enquire {
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 11px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp-enquire:hover,
.btn-whatsapp-enquire:focus {
    background: #128c7e;
    color: #fff;
}

.package-trust-list {
    margin: 0 0 20px;
    padding: 14px 0 0;
    border-top: 1px solid #eef2f6;
}

.package-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    padding: 5px 0;
    line-height: 1.45;
}

.package-trust-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.package-booking-panel__callback {
    padding-top: 18px;
    border-top: 1px solid #eef2f6;
}

.package-booking-panel__callback-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 14px;
    text-transform: none;
}

.package-callback-form .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.package-callback-form .form-control {
    border-color: #dee2e6;
    font-size: 13px;
}

.package-callback-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(0, 29, 61, 0.1);
}

.package-detail-sidebar {
    position: sticky;
    top: 90px;
}

.package-price-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.package-price-card__label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
    text-transform: none;
}

.package-price-card__amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.package-price-card .btn-primary {
    width: 100%;
    font-weight: 600;
    border-radius: 4px;
}

.package-price-card .btn-primary:hover,
.package-price-card .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
    transform: none;
}

.package-description {
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.package-description p {
    margin-bottom: 0.75rem;
}

.package-description ul,
.package-description ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.package-description li {
    margin-bottom: 0.35rem;
}

.package-description h1,
.package-description h2,
.package-description h3,
.package-description h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.25rem 0 0.75rem;
    text-transform: none;
}

.package-description table.pkg-content-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    background: #fff;
    border: none;
}

.package-description .pkg-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(0, 29, 61, 0.07);
    background: #fff;
}

.package-description table.pkg-content-table caption {
    caption-side: top;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
    text-align: left;
    background: #f8fafc;
    border-bottom: 3px solid var(--secondary-color);
}

.package-description table.pkg-content-table thead th,
.package-description table.pkg-content-table thead td {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: middle;
    white-space: nowrap;
}

.package-description table.pkg-content-table thead th:last-child,
.package-description table.pkg-content-table thead td:last-child {
    border-right: none;
}

.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:first-child > th,
.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:first-child > td,
.package-description table.pkg-content-table:not(:has(thead)) > tr:first-child > th,
.package-description table.pkg-content-table:not(:has(thead)) > tr:first-child > td {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: middle;
}

.package-description table.pkg-content-table tbody td,
.package-description table.pkg-content-table tbody th,
.package-description table.pkg-content-table > tr > td,
.package-description table.pkg-content-table > tr > th {
    padding: 11px 16px;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #eef2f6;
    vertical-align: top;
    color: #334155;
    line-height: 1.5;
}

.package-description table.pkg-content-table tbody td:last-child,
.package-description table.pkg-content-table tbody th:last-child,
.package-description table.pkg-content-table > tr > td:last-child,
.package-description table.pkg-content-table > tr > th:last-child {
    border-right: none;
}

.package-description table.pkg-content-table tbody tr:last-child td,
.package-description table.pkg-content-table tbody tr:last-child th,
.package-description table.pkg-content-table > tr:last-child > td,
.package-description table.pkg-content-table > tr:last-child > th {
    border-bottom: none;
}

.package-description table.pkg-content-table tbody tr:nth-child(even) td,
.package-description table.pkg-content-table tbody tr:nth-child(even) th {
    background: #f8fafc;
}

.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:nth-child(even):not(:first-child) > td,
.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:nth-child(even):not(:first-child) > th,
.package-description table.pkg-content-table:not(:has(thead)) > tr:nth-child(even):not(:first-child) > td,
.package-description table.pkg-content-table:not(:has(thead)) > tr:nth-child(even):not(:first-child) > th {
    background: #f8fafc;
}

.package-description table.pkg-content-table tbody tr:hover td,
.package-description table.pkg-content-table tbody tr:hover th,
.package-description table.pkg-content-table > tr:hover > td,
.package-description table.pkg-content-table > tr:hover > th {
    background: rgba(255, 153, 0, 0.08);
}

.package-description table.pkg-content-table:has(thead) tbody td:first-child,
.package-description table.pkg-content-table:has(thead) tbody th:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:not(:first-child) > td:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:not(:first-child) > th:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tr:not(:first-child) > td:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tr:not(:first-child) > th:first-child {
    font-weight: 600;
    color: var(--primary-color);
    background: #f3f6f9;
}

.package-description table.pkg-content-table:has(thead) tbody tr:hover td:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:not(:first-child):hover > td:first-child,
.package-description table.pkg-content-table:not(:has(thead)) > tr:not(:first-child):hover > td:first-child {
    background: rgba(255, 153, 0, 0.12);
}

.package-description table.pkg-content-table strong,
.package-description table.pkg-content-table b {
    color: var(--primary-color);
}

.package-description table.pkg-content-table a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.package-description table.pkg-content-table a:hover {
    text-decoration: underline;
}

.package-gallery-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.package-gallery-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: none;
}

.package-gallery-section__subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-transform: none;
}

.package-gallery-section__subtitle i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 1.25rem;
}

.package-gallery-item {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    background: #fff;
}

.package-gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.package-gallery-item:hover img {
    transform: scale(1.04);
}

.callback-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.callback-card .card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 18px;
}

.callback-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: none;
}

.callback-card .btn-primary:hover,
.callback-card .btn-primary:focus {
    background-color: #ff9900;
    border-color: #ff9900;
}

@media (max-width: 991.98px) {
    .package-booking-panel,
    .package-detail-sidebar {
        position: static;
    }

    .package-detail-hero {
        min-height: 240px;
        max-height: 360px;
    }

    .package-detail-hero__overlay {
        padding: 36px 0 28px;
    }

    .package-detail-section {
        padding: 22px 18px 8px;
    }

    .package-detail-section--gallery {
        padding-bottom: 22px;
    }

    .package-description .pkg-table-scroll {
        margin-left: -4px;
        margin-right: -4px;
    }

    .package-description table.pkg-content-table {
        min-width: 440px;
        font-size: 13px;
    }

    .package-description table.pkg-content-table thead th,
    .package-description table.pkg-content-table thead td,
    .package-description table.pkg-content-table:not(:has(thead)) > tbody > tr:first-child > td,
    .package-description table.pkg-content-table:not(:has(thead)) > tr:first-child > td {
        padding: 10px 12px;
    }
}

 .card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.card-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    position: relative;
}

/* Company profile / about page */
     /* About Us Sections */
.about-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
}

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

.about-card-body {
    padding: 30px;
}

.about-card-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-text {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.7;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,29,61,0.2);
}

.about-feature-content {
    flex: 1;
}

.about-feature-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-feature-text {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Company Stats */
.stats-section {
    background: linear-gradient(rgba(0, 29, 61, 0.9), rgba(0, 29, 61, 0.9)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
}

.stats-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

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

.team-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-social {
    position: absolute;
    top: 20px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    right: 20px;
}

.team-social-icon {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-social-icon:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-position {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-description {
    color: var(--medium-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--tertiary-color);
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    padding: 30px;
    margin: 15px;
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(0,29,61,0.05);
}

.testimonial-content {
    font-style: italic;
    color: var(--medium-text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--tertiary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--light-text);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Timeline */
.timeline-section {
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--tertiary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

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

.timeline-content {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    width: calc(50% - 30px);
    transition: var(--transition);
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0,0,0,0.05);
}

.timeline-date {
    position: absolute;
    top: 20px;
    width: 100px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-date {
    left: -125px;
    border-radius: 15px 0 0 15px;
}

.timeline-item:nth-child(even) .timeline-date {
    right: -125px;
    border-radius: 0 15px 15px 0;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.timeline-body {
    padding: 30px;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission & Vision */
.mission-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.mission-content {
    padding: 30px;
    text-align: center;
}

.mission-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-text {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(90deg, var(--primary-color) 0%, #004080 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: white;
}

/* Partners Section */
.partners-section {
    background: white;
}

.partners-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partners-logo img {
    max-width: 100%;
    max-height: 100%;
}

.hotel-meta-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.hotel-meta-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--dark-text);
}

.hotel-meta-list i {
    color: var(--primary-color);
    width: 1.25rem;
    margin-right: 0.5rem;
}

.map-container {
    margin-bottom: 40px;
}

.google-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.contact-map-iframe {
    border: 0;
    display: block;
}

.lead-success-modal {
    border-radius: 20px;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
}

.lead-success-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    opacity: 0.7;
}

.lead-success-hero {
    background: linear-gradient(145deg, #001d3d 0%, #003566 55%, #004e89 100%);
    padding: 2.5rem 1.5rem 2rem;
    position: relative;
}

.lead-success-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 153, 0, 0.25), transparent 45%);
    pointer-events: none;
}

.lead-success-icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9900, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(255, 153, 0, 0.45);
    position: relative;
    z-index: 1;
    animation: leadSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.lead-success-icon-wrap i {
    font-size: 2.25rem;
    color: #fff;
}

.lead-success-title {
    font-weight: 700;
    color: #001d3d;
    margin-bottom: 0.5rem;
}

.lead-success-text {
    color: #5a6a7a;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.lead-success-steps li {
    font-size: 0.875rem;
    color: #334155;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lead-success-steps li i {
    color: #ff9900;
    flex-shrink: 0;
}

.btn-lead-success-primary {
    background: linear-gradient(135deg, #ff9900, #e67e00);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
}

.btn-lead-success-primary:hover {
    background: linear-gradient(135deg, #e67e00, #cc7000);
    color: #fff;
}

.btn-lead-success-outline {
    border: 2px solid #001d3d;
    color: #001d3d;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
}

.btn-lead-success-outline:hover {
    background: #001d3d;
    color: #fff;
}

@keyframes leadSuccessPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

