/* ══════════════════════════════════════════════
   KAIRA TECHNOLOGIES — FOOTER & SHARED COMPONENTS
   Navbar styles are in navbar-fix.css
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   FOOTER DESIGN MATCH — MINIMALIST DARK
══════════════════════════════════════════════ */
.ct-footer {
    background: #0f0f0f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 40px 0 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ct-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
}

/* Column 1: Brand */
.ct-col-brand .ct-footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 30px;
}


.ct-footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9); /* More visible */
    font-weight: 700; /* Bold */
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
}


.ct-footer-social-icons {
    display: flex;
    gap: 20px;
}

.ct-footer-social-icons a {
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.ct-footer-social-icons a:hover {
    color: #ffd700;
}

/* Column Titles */
.ct-col-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px; /* Reduced margin to accommodate underline */
    position: relative;
}

.ct-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

/* Links */
.ct-footer-links {
    list-style: none;
    padding: 0;
}

.ct-footer-links li {
    margin-bottom: 15px;
}

.ct-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ct-footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

/* Contact Section */
.ct-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}



.ct-contact-icon {
    width: 48px;
    height: 48px;
    background: #ffd700; /* Yellow/Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ct-contact-icon i {
    color: #000000; /* Black */
    font-size: 1.1rem;
}

.ct-contact-item:hover .ct-contact-icon {
    background: #ffffff;
    transform: scale(1.1);
}

.ct-contact-item:hover .ct-contact-icon i {
    color: #000000;
}



.ct-contact-text span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.ct-contact-text a, .ct-contact-text p {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ct-contact-text a:hover {
    color: #ffd700;
}

/* Bottom Bar */
.ct-footer-bottom {
    margin-top: 60px;
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.ct-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .ct-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .ct-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Navbar styles are in navbar-fix.css only */

/* ══════════════════════════════════════════════
   PREMIUM CTA SECTION
══════════════════════════════════════════════ */
.cta-premium-wrap {
    padding: 0px 0 80px; /* Removed top padding */
    background: #fff;
}

.cta-premium-card {
    background: radial-gradient(circle at center, #1c2954 0%, #111d42 100%);
    border-radius: 60px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-premium-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}

.cta-main-title {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 45px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-btns-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.cta-btn-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    color: #000000 !important;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-btn-main:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.4);
    color: #000000 !important;
}

.cta-btn-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-premium-card { border-radius: 30px; padding: 60px 20px; }
    .cta-main-title { font-size: 2rem; }
    .cta-btns-group { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   FLOATING ICONS (WhatsApp & Pabbly)
══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.pabbly-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pabbly-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pabbly-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pabbly-float::after {
    content: 'Pabbly Automation';
    position: absolute;
    left: 75px;
    background: #1c2954;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.pabbly-float:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    .pabbly-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        padding: 10px;
    }
    .pabbly-float::after {
        display: none !important; /* Hide tooltip on mobile */
    }
}
