/* Components - Buttons, Forms, Banners, Team Cards */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px; border-radius: 10px; font-family: inherit;
    font-weight: 600; font-size: 14px; cursor: pointer;
    border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,58,138,0.3); }
.btn-accent { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(30,58,138,0.85), rgba(15,23,42,0.85)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920') center/cover;
    color: var(--white); padding: 70px 0; text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner h1 { font-size: 44px; font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; }
.page-banner p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 18px; font-size: 14px; }
.breadcrumb a { opacity: 0.8; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.6; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
    border-radius: 10px; font-family: inherit; font-size: 14px;
    color: var(--gray-900); background: var(--white);
    transition: all 0.3s ease;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,58,138,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #ef4444; font-size: 12px; margin-top: 4px; display: none; }
.form-control.error { border-color: #ef4444; }
.form-control.error ~ .form-error { display: block; }
.form-success { background: #dcfce7; color: #166534; padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }

/* Price Table */
.price-table {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100); margin-bottom: 30px;
}
.price-table-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.price-table-header h3 { font-size: 20px; font-weight: 700; }
.price-table-header p { font-size: 13px; opacity: 0.9; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
    padding: 14px 20px; text-align: left; font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
}
.price-table th { background: var(--gray-50); font-weight: 600; color: var(--gray-900); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-table td { color: var(--gray-700); transition: background 0.3s ease; }
.price-table tr:hover td { background: var(--gray-50); }
.price-cell { font-weight: 700; color: var(--primary); font-size: 15px; white-space: nowrap; }
.price-old { text-decoration: line-through; color: var(--gray-500); font-size: 12px; display: block; font-weight: 400; }
.action-cell { text-align: center; }

/* Inquiry Box */
.inquiry-box {
    background: linear-gradient(135deg, var(--primary-light), #ffffff);
    border-radius: var(--radius-lg); padding: 40px;
    border: 1px solid var(--primary-light); box-shadow: var(--shadow-md);
    margin-top: 30px;
}
.inquiry-box .head { text-align: center; margin-bottom: 30px; }
.inquiry-box .head h3 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.inquiry-box .head p { color: var(--gray-700); font-size: 14px; }

/* Contact Info Cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.contact-info-card {
    background: var(--white); padding: 32px 24px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-top-color: var(--accent); }
.contact-info-card .icon-wrap {
    width: 64px; height: 64px; background: var(--primary-light);
    color: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin: 0 auto 16px;
    transition: transform 0.4s ease;
}
.contact-info-card:hover .icon-wrap { transform: scale(1.1) rotate(-8deg); }
.contact-info-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { color: var(--gray-700); font-size: 14px; line-height: 1.7; }

/* Two Column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* Service Cards */
.service-detail-card {
    background: var(--white); padding: 40px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); margin-bottom: 28px;
    display: grid; grid-template-columns: 100px 1fr auto; gap: 28px;
    align-items: center; border-left: 5px solid var(--primary);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--accent); }
.service-detail-card .big-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary-light), #ffffff);
    color: var(--primary); border-radius: 20px;
    display: flex; align-items: center; justify-content: center; font-size: 36px;
    transition: transform 0.4s ease;
}
.service-detail-card:hover .big-icon { transform: rotate(-6deg) scale(1.05); }
.service-detail-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.service-detail-card p { color: var(--gray-700); font-size: 14px; margin-bottom: 10px; }
.service-detail-card .feature-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-detail-card .feature-list span { background: var(--gray-100); color: var(--gray-700); padding: 4px 12px; border-radius: 20px; font-size: 12px; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-item { text-align: center; padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat-item .num { font-size: 40px; font-weight: 800; color: var(--primary); display: block; }
.stat-item .label { color: var(--gray-700); font-size: 14px; }

/* Icon list */
.icon-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--gray-700); font-size: 15px; }
.icon-list i { color: var(--accent); background: var(--primary-light); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

section.section-block { padding: 70px 0; }
section.section-block.gray { background: var(--gray-50); }

/* Toggle Tabs */
.destination-toggle {
    display: flex; justify-content: center; gap: 4px;
    background: var(--gray-100); border-radius: 30px;
    padding: 4px; max-width: 400px; margin: 0 auto 40px;
}
.toggle-btn {
    flex: 1; padding: 12px 24px; border: none; background: transparent;
    border-radius: 25px; font-family: inherit; font-weight: 600;
    font-size: 14px; color: var(--gray-700); cursor: pointer;
}
.toggle-btn.active { background: var(--primary); color: var(--white); box-shadow: 0 4px 12px rgba(30,58,138,0.25); }
.toggle-btn i { margin-right: 6px; }

/* =============================================
   TEAM SECTION - Easy to edit team members
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}
.team-avatar { overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.team-card:hover .team-avatar { transform: scale(1.08) rotate(-4deg); }
.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.team-card .role {
    display: block;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-card p {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 14px;
    line-height: 1.6;
}
.team-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    font-size: 13px;
    transition: all 0.3s ease;
}
.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Tabs (package details) */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-100); margin-bottom: 24px; overflow-x: auto; }
.tab-btn { padding: 12px 24px; background: transparent; border: none; font-family: inherit; font-weight: 500; font-size: 14px; color: var(--gray-700); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.3s ease; white-space: nowrap; }
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Gallery */
/* Single hero image per destination (one image is enough) */
.gallery { display: block; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.gallery > div { background-size: cover; background-position: center; transition: transform 0.5s ease; width: 100%; height: 420px; }
.gallery > div:hover { transform: scale(1.03); }
/* If more than one image is ever added again, they stack full-width */
.gallery > div + div { margin-top: 8px; }

/* Booking box */
.booking-box { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.booking-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.booking-price .price { font-size: 32px; font-weight: 800; color: var(--primary); }
.booking-price .per { color: var(--gray-500); font-size: 14px; }

/* ============================================================
   PAYMENT PARTNERS strip (bottom of every page)
   Controlled from js/payment-partners.js (developer only)
   ============================================================ */
.payment-partners {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0 30px;
    text-align: center;
}
.payment-partners .pp-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 18px;
}
.payment-partners .pp-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 18px;
}
.payment-partners .pp-logo {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 16px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.payment-partners .pp-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.payment-partners .pp-logo img {
    max-height: 34px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ============================================================
   RELATIONS & RECOGNITIONS strip (bottom of every page)
   Controlled from js/relations-recognitions.js (developer only)
   ============================================================ */
.relations-recognitions {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0 30px;
    text-align: center;
}
.relations-recognitions .rr-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 18px;
}
.relations-recognitions .rr-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 18px;
}
.relations-recognitions .rr-logo {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 16px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.relations-recognitions .rr-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.relations-recognitions .rr-logo img {
    max-height: 34px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}
