/* ===================================
   Triplogy Brand Overrides for Volantix
   volantix.in | triplogy.com
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

/* ─── COLOUR TOKENS ─────────────────── */
:root {
    --volt-blue:    #3264f5;
    --volt-purple:  #7202bb;
    --volt-teal:    #00bcd4;
    --trip-gold:    #FFD166;
    --trip-gold-dk: #e6b800;
    --dark-bg:      #12121a;
    --dark-card:    #1c1c28;
    --text-muted:   #999;
}

/* ─── LOGO LINK FIX ─────────────────── */
.navbar .logo a,
a.logo { text-decoration: none; }

/* ─── GOLD CTA BUTTON ───────────────── */
.triplogy-btn-gold {
    background: var(--trip-gold);
    border-color: var(--trip-gold);
    color: #1a1a2e !important;
    font-weight: 600;
}
.triplogy-btn-gold:hover,
.triplogy-btn-gold:focus {
    background: var(--trip-gold-dk) !important;
    border-color: var(--trip-gold-dk) !important;
    color: #1a1a2e !important;
}

/* ─── ACCENT TEXT ───────────────────── */
.triplogy-accent        { color: var(--volt-teal); }
.triplogy-accent-icon   { color: var(--volt-blue); margin-right: 8px; }
.triplogy-inline-link   { color: var(--volt-purple); font-weight: 600; text-decoration: none; }
.triplogy-inline-link:hover { color: var(--volt-blue); }

/* ─── HERO OVERLAY ──────────────────── */
.triplogy-overlay {
    background: linear-gradient(135deg, #3264f5 0%, #7202bb 100%);
}

/* ─── FEATURE BOXES ─────────────────── */
.triplogy-feature-box {
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(50, 100, 245, 0.08);
    height: 100%;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--volt-blue), var(--volt-purple)) 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.triplogy-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(50, 100, 245, 0.15);
}
.triplogy-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.triplogy-feature-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

/* ─── STATIC STAT NUMBERS (replaces broken .count animation) ── */
.vx-stat-num {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.vx-stat-num span {
    font-size: 32px;
    font-weight: 600;
    color: var(--trip-gold);
    margin-left: 2px;
}

/* ─── STATS SECTION ─────────────────── */
.triplogy-stats-bg {
    background: url('../images/bg-img1.jpg') center center / cover no-repeat;
    min-height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.triplogy-stats-bg .counter-row {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
}
.triplogy-stats-bg .counter-item {
    text-align: center;
    min-width: 140px;
}
.triplogy-stats-bg .count {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.triplogy-stats-bg h6 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

/* ─── SERVICE CARDS ─────────────────── */
.triplogy-service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}
.triplogy-service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--volt-blue), var(--volt-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.triplogy-service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(50,100,245,0.14); }
.triplogy-service-card:hover::before { transform: scaleX(1); }
.triplogy-service-card h5 { font-size: 16px; font-weight: 600; color: #1a1a2e; margin: 1rem 0 0.6rem; font-family: 'Poppins', sans-serif; }
.triplogy-service-card p  { font-size: 14px; color: #777; line-height: 24px; margin: 0; }

.triplogy-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--volt-blue), var(--volt-purple));
    display: flex;
    align-items: center;
    justify-content: center;
}
.triplogy-service-icon i {
    font-size: 22px;
    color: #ffffff;
}

/* ─── B2B CTA BAND ──────────────────── */
.triplogy-cta-band { position: relative; overflow: hidden; }
.triplogy-cta-inner {
    position: relative;
    padding: 7rem 2rem;
    background: url('../images/bg-img2.jpg') center center / cover no-repeat;
    width: 100%;
}
.triplogy-cta-inner h2 { font-size: 40px; font-weight: 700; }
@media (max-width: 768px) { .triplogy-cta-inner h2 { font-size: 26px; } }

/* ─── WHY VOLANTIX CARDS ─────────────── */
.triplogy-why-card {
    padding: 2rem 1.4rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.triplogy-why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(50,100,245,0.12); }
.triplogy-why-card h6 { font-size: 15px; font-weight: 600; color: #1a1a2e; margin: 1rem 0 0.5rem; }
.triplogy-why-card p  { font-size: 13px; color: #777; line-height: 22px; margin: 0; }

.triplogy-why-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--volt-blue), var(--volt-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}
.triplogy-why-icon i { font-size: 24px; color: #fff; }

/* ─── PAYMENTS LIST ─────────────────── */
.triplogy-payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.triplogy-payment-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}
.triplogy-payment-list li:last-child { border-bottom: none; }

/* ─── TRIPLOGY BRAND SPOTLIGHT ──────── */
.triplogy-spotlight { overflow: hidden; }

.triplogy-spotlight-visual {
    position: relative;
    min-height: 520px;
    background: url('../images/bg-img3.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.triplogy-spotlight-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem;
}
.triplogy-spotlight-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--trip-gold);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.2rem;
}
.triplogy-brand-wordmark {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
}
.triplogy-brand-wordmark span { color: var(--trip-gold); }
.triplogy-brand-wordmark sup  { color: var(--trip-gold); font-size: 28px; vertical-align: super; }
.triplogy-spotlight-tagline {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-top: 1rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.triplogy-spotlight-detail { background: #f8f9fc; }
.triplogy-spotlight-inner  { padding: 5rem 4rem; }
@media (max-width: 991px) {
    .triplogy-spotlight-visual { min-height: 380px; }
    .triplogy-spotlight-inner  { padding: 3rem 2rem; }
    .triplogy-brand-wordmark   { font-size: 40px; }
}

.triplogy-spotlight-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.4rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.25s;
}
.triplogy-spotlight-card:hover { transform: translateY(-4px); }
.triplogy-spotlight-card h6 { font-size: 14px; font-weight: 600; color: #1a1a2e; margin: 8px 0 4px; }
.triplogy-spotlight-card p  { font-size: 13px; color: #888; margin: 0; line-height: 20px; }

.triplogy-card-icon {
    font-size: 22px;
    background: linear-gradient(135deg, var(--volt-blue), var(--volt-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── FOOTER LOGO ───────────────────── */
.vx-footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--volt-blue), var(--volt-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── FOOTER ─────────────────────────── */
.triplogy-footer {
    background: #12121a;
    padding: 5rem 0 2rem;
}
.triplogy-footer-heading {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.triplogy-footer-links li {
    margin-bottom: 10px;
}
.triplogy-footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.triplogy-footer-links a:hover { color: var(--trip-gold); }

.triplogy-footer-social {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a3a;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #aaa;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.triplogy-footer-social:hover {
    background: linear-gradient(135deg, var(--volt-blue), var(--volt-purple));
    color: #fff;
}

.triplogy-footer-brand-box {
    background: #1c1c28;
    border-radius: 10px;
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--volt-purple);
}
.triplogy-footer-wordmark {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}
.triplogy-footer-wordmark span { color: var(--trip-gold); }

/* ─── FLOATING WHATSAPP ──────────────── */
.triplogy-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
}
.triplogy-whatsapp-float i { font-size: 28px; color: #ffffff; }
.triplogy-whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* ─── FORM ENHANCEMENTS ──────────────── */
.contact-form .form-control {
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
    border-color: var(--volt-blue);
    box-shadow: 0 0 0 3px rgba(50, 100, 245, 0.1);
}
.contact-form select.form-control { color: #6d6d6d; }

/* ─── SECTION TITLE UNDERLINE ────────── */
.title h2 { position: relative; padding-bottom: 18px; }
.title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--volt-blue), var(--volt-purple));
    border-radius: 2px;
}
.text-center .title h2::after { left: 50%; transform: translateX(-50%); }

/* ─── ADDRESS BOX SOCIAL ROW ─────────── */
.address-social ul {
    display: flex;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.address-social ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.address-social ul li a:hover {
    background: var(--trip-gold);
    border-color: var(--trip-gold);
    color: #1a1a2e;
}

/* ─── RESPONSIVE TWEAKS ──────────────── */
@media (max-width: 767px) {
    .triplogy-stats-bg .counter-row { gap: 1.8rem; padding: 2.5rem 1rem; }
    .triplogy-stats-bg .count { font-size: 38px; }
    .triplogy-cta-inner { padding: 4rem 1.5rem; }
    .triplogy-footer { padding: 3.5rem 0 1.5rem; }
    .triplogy-spotlight-inner { padding: 2.5rem 1.5rem; }
    .triplogy-whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .triplogy-whatsapp-float i { font-size: 24px; }
}
