/* ============================================================ */
/* PRECIOUS-CAPACITY.HTML — PAGE-SPECIFIC STYLES                 */
/* Shared styles (header/nav/footer/cta-strip/testimonials/      */
/* grid-3/premium-card) already live in assets/css/style.css     */
/* All classes here use "cap-" prefix so they never collide with */
/* similar-sounding classes already used on other pages          */
/* ============================================================ */

/* ---------------- AUTO-SCROLL SHOWCASE ---------------- */
@keyframes infiniteScrollEffect {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

@media (min-width: 769px) {
    .hero-scroll-container:hover .hero-scroll-track {
        animation-play-state: paused;
    }
}

.hero-scroll-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: calc(50vw - 25px);
    max-width: 650px;
    height: 520px;
    background: #111;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-scroll-item {
        width: calc(85vw - 15px);
        height: 380px;
    }
}

/* ---------------- CAPACITY PROFILE HERO ---------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes goldGlow {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2); }
}

.cap-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #0b2d28;
    font-family: 'Poppins', sans-serif;
}

.cap-hero-wrapper {
    width: 100%;
    max-width: 900px;
}

.cap-hero-card {
    background: linear-gradient(145deg, #161920, #1e222b);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 50px;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards, goldGlow 4s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.cap-profile-tag {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.cap-hero-card h1 {
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cap-gold-text {
    color: #d4af37;
    background: linear-gradient(90deg, #ffe082, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cap-hero-desc {
    color: #a0a5b5;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cap-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.cap-feature-item {
    color: #e2e4e9;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cap-feature-item span {
    color: #d4af37;
    font-weight: bold;
}

.cap-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.cap-btn-primary, .cap-btn-outline {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cap-btn-primary {
    background: #d4af37;
    color: #0f1115;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cap-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cap-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cap-btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.cap-stats-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 25px 0 0 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 15px;
}

.cap-stats-list li {
    color: #a0a5b5;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.cap-stats-list li strong {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .cap-hero { padding: 40px 15px; }
    .cap-hero-card { padding: 30px 20px; border-radius: 16px; }
    .cap-hero-card h1 { font-size: 2rem; }
    .cap-features { grid-template-columns: 1fr; gap: 12px; }
    .cap-hero-buttons { flex-direction: column; gap: 12px; }
    .cap-stats-list { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* ---------------- CAPACITY PORTFOLIO (unique names, no collision) ---------------- */
.section-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.cap-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.cap-portfolio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.cap-portfolio-card a {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cap-portfolio-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

.cap-portfolio-card h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 5px;
    width: 100%;
    display: block;
}

.cap-portfolio-card h4 {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    display: block;
}

.cap-portfolio-card ul {
    align-self: flex-start;
    text-align: left;
    padding-left: 20px;
    margin: 15px 0 0 0;
    list-style-position: outside;
    width: 100%;
}

.cap-portfolio-card li {
    text-align: left;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cap-portfolio-grid { grid-template-columns: 1fr; gap: 35px; }
    .cap-portfolio-card { padding: 10px; align-items: center; }
    .cap-portfolio-card img { width: 100%; height: auto; }
    .cap-portfolio-card h3 { font-size: 1.25rem; text-align: center; }
    .cap-portfolio-card h4 { font-size: 0.95rem; text-align: center; }
    .cap-portfolio-card ul { align-self: flex-start; text-align: left; padding-left: 25px; }
    .cap-portfolio-card li { text-align: left; font-size: 0.9rem; }
}

/* ---------------- TRUSTED WORKPLACE HOSPITALITY CTA BANNER ---------------- */
.cap-cta-banner {
    width: 100%;
    padding: 60px 20px;
    background: #0b2d28;
    display: flex;
    justify-content: center;
}

.cap-banner-box {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cap-banner-left {
    flex: 1;
}

.cap-sub-tag {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.cap-banner-left h2 {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cap-banner-left p {
    color: #a0a5b5;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 750px;
}

.cap-cta-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    width: 100%;
}

.cap-bullet-item {
    color: #e2e4e9;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.cap-bullet-item span {
    color: #d4af37;
    font-weight: bold;
}

.cap-banner-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cap-banner-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #d4af37;
    color: #0f1115;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cap-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .cap-banner-box { flex-direction: column; align-items: flex-start; gap: 30px; padding: 10px; }
    .cap-banner-left h2 { font-size: 1.7rem; }
    .cap-cta-bullets { grid-template-columns: 1fr; gap: 12px; width: 100%; }
    .cap-bullet-item { text-align: left; font-size: 0.9rem; }
    .cap-banner-right { width: 100%; justify-content: center; }
    .cap-banner-btn { width: 100%; text-align: center; }
}

/* ---------------- "WHY CORPORATES TRUST US" — extra bullet list style ---------------- */
.cap-clean-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.cap-clean-list li {
    margin-bottom: 8px;
}

/* ---------------- CAPABILITY CARD TABLE ---------------- */
.cap-capability-card {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 40px 0 0 0;
    border: 1px solid #e0e0e0;
}

.cap-capability-header {
    background: #1e3a8a;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.cap-capability-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: auto;
}

.cap-capability-table th,
.cap-capability-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid #eceff1;
}

.cap-capability-table th {
    background-color: #f8fafc;
    color: #334155;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.cap-capability-table tr:last-child td {
    border-bottom: none;
}

.cap-capability-table tr:hover {
    background-color: #f1f5f9;
}

.cap-capability-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    width: 30%;
}

.cap-capability-table td:last-child {
    color: #475569;
}

/* ---------------- CONSULTATION SECTION ---------------- */
.cap-consult-section {
    width: 100%;
    padding: 80px 20px;
    background: #0b2d28;
    display: flex;
    justify-content: center;
}

.cap-consult-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.cap-consult-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.cap-consult-content {
    flex: 1;
    max-width: 800px;
    text-align: left;
}

.cap-consult-subtitle {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 15px;
}

.cap-consult-content .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

.cap-consult-desc {
    color: #a0a5b5;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .cap-consult-section { padding: 50px 15px; }
    .cap-consult-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cap-consult-content .section-title { font-size: 1.8rem; }
    .cap-consult-desc { font-size: 0.95rem; }
}
