/* ========== GENERAL NAVBAR LOOK ========== */
.templora-navbar {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* Brand Icon */
.logo-icon {
    font-size: 1.4rem;
    color: #0d6efd;
}

/* Nav Links */
.nav-link {
    font-weight: 500;
    color: #1e293b;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

/* Desktop Button */
.navbar .btn-primary {
    background: #0d6efd;
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: 0.25s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
}

/* ========== OFFCANVAS MENU (Mobile) ========== */

.templora-offcanvas {
    width: 260px;
    background: #ffffff;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.1);
}

.templora-offcanvas .nav-link {
    font-size: 1.1rem;
    padding-left: .5rem;
}

.templora-offcanvas .nav-link:hover {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 6px;
}

/* Mobile Primary Button */
.templora-offcanvas .btn-primary {
    width: 100%;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

/* ===================== HERO SECTION ===================== */

.templora-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

/* Title */
.hero-title {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.highlights {
    color: #0d6efd;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 90%;
    margin-top: 1rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

/* Floating animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive fix */
@media (max-width: 768px) {
    .templora-hero {
        padding: 4rem 0;
    }
}

/* ===================== QUICK START ===================== */

.templora-quickstart {
    background: #f8fafc;
}

.code-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.code-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.code-box {
    background: #0f172a;
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    overflow-x: auto;
    height: 180px;
}

.code-box pre {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    white-space: pre;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #334155;
    color: #ffffff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.copy-btn:hover {
    background: #475569;
}

/* ===================== FEATURE SECTION ===================== */

.templora-features {
    background: #ffffff;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.2rem;
    color: #0d6efd;
}

/* ===================== CTA SECTION ===================== */

.templora-cta {
    background: linear-gradient(135deg, #0d6dfdb4, #5b8efdb6);
    color: #ffffff;
    border-radius: 0;
    padding: 6rem 0;
}

.cta-title {
    font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
}

.highlight {
    color: #ffdd57;
}

.cta-subtitle {
    max-width: 650px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Button styling */
.templora-cta .btn-light {
    background: #ffffff;
    color: #0d6efd;
    border: none;
    transition: 0.25s ease;
}

.templora-cta .btn-light:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.templora-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transition: 0.25s ease;
}

.templora-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.premium-faq {
    max-width: 850px;
}

.faq-title {
    font-size: 32px;
    letter-spacing: -0.5px;
}

.faq-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.faq-btn {
    font-weight: 600;
    padding: 16px 20px;
    background: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f7f7f9 !important;
    color: #000;
}

.accordion-body {
    background: #fff;
    padding: 18px 22px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


/* ===================== PREMIUM FOOTER ===================== */

.templora-footer {
    background: #0f172a;
}

.footer-logo {
    color: #0d6efd;
}

/* Social Icons */
.footer-icon {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.footer-icon:hover {
    color: #0d6efd;
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.25s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Newsletter */
.input-group input {
    border-radius: 6px 0 0 6px;
    border: none;
}

.input-group .btn-light {
    border-radius: 0 6px 6px 0;
    font-weight: 600;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .templora-footer {
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}