/* =========================================
   HOTEL & HOSPITALITY SOLUTIONS LANDING
   Trimerous Technology
========================================= */

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #ffffff;
}

/* =========================
   NAV IMPROVEMENT (optional polish)
========================= */
.navbar {
    backdrop-filter: blur(10px);
}

/* =========================
   CTA SECTION BASE
========================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* TITLE */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 16px;
    color: #ffffff;
}

/* =========================
   GLASS CARD EFFECT
========================= */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* HEADINGS INSIDE CARDS */
.glass-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* TEXT */
.glass-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   BUTTON SYSTEM (HOTEL STYLE)
========================= */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    margin-top: 10px;
    width: 100%;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

/* CONTACT BUTTON */
.btn-contact {
    background: #0d6efd;
    color: #fff;
}

.btn-contact:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* CALL BUTTON */
.btn-call {
    background: #111827;
    color: #fff;
}

.btn-call:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* WHATSAPP BUTTON */
.btn-chat {
    background: #25d366;
    color: #fff;
}

.btn-chat:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* =========================
   SOCIAL ICONS
========================= */
.list-inline-item .fa-stack {
    transition: all 0.3s ease;
}

.list-inline-item .fa-stack:hover {
    transform: scale(1.15);
}

/* =========================
   HOVER ANIMATION
========================= */
.glass-card,
.custom-btn {
    will-change: transform;
}

/* =========================
   FOOTER POLISH (luxury feel)
========================= */
.footer-clean {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.footer-logo-text {
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .cta-title {
        font-size: 28px;
    }

    .glass-card {
        padding: 20px;
    }

    .custom-btn {
        font-size: 14px;
    }
}