:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.header {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
.price del {
    color: #888;
    margin-right: 8px;
    font-size: 0.9em;
}
.price .discounted-price {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1em;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: #4b5563;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer {
    background: #23272f;
    color: #f4f8fb;
    padding: 0;
}
.footer-main {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem 1rem 1rem;
}
.footer-block {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}
.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}
.footer-title {
    color: #5faee3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.footer-desc {
    font-size: 1rem;
    color: #bfc9d1;
    margin-bottom: 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.footer-link {
    color: #f4f8fb;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.2s;
}
.footer-link:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #5faee3;
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 2px;
}
.footer-link:hover {
    color: #5faee3;
}
.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-social-links a {
    color: #fff;
    background: #353b45;
    font-size: 1.7rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-links a:hover {
    background: #5faee3;
    color: #23272f;
    transform: scale(1.12) rotate(-8deg);
}
.footer-divider {
    width: 1px;
    background: #353b45;
    margin: 0 0.5rem;
}
.footer-copyright {
    text-align: center;
    color: #bfc9d1;
    font-size: 1rem;
    letter-spacing: 0.2px;
    border-top: 1px solid #353b45;
    padding: 1.2rem 1rem 1.2rem 1rem;
    background: #23272f;
    margin-top: 0;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 2rem 0.5rem 0.5rem 0.5rem;
    }
    .footer-block {
        min-width: 0;
        padding: 1.2rem 0;
    }
    .footer-divider {
        width: 80%;
        height: 1px;
        background: #353b45;
        margin: 0.5rem auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }
}

.start-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: background 0.2s, color 0.2s;
}
@media (max-width: 768px) {
    .start-btn {
        padding: 0.35rem 0.9rem;
        font-size: 0.95rem;
    }
    .navbar .container {
        justify-content: flex-end !important;
    }
}

@media (max-width: 576px) {
    .navbar .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap:10px;
    }
    .navbar-brand {
        flex-shrink: 0;
        min-width: 0;
        margin-right: 0px!important;
    }
    .start-btn {
        flex-shrink: 0;
        margin-top: 0;
    }
    .hero-buttons .btn-primary {
        margin-right:0!important;
    }
}

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #23272f;
    color: #f4f8fb;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    padding: 1.2rem 2rem 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    transition: transform 0.3s;
}
.cookie-bar.hide {
    transform: translateY(120%);
}
.cookie-bar-message {
    flex: 1;
    max-width: 600px;
    color: #f4f8fb;
}
.cookie-bar-actions {
    display: flex;
    gap: 1rem;
}
.cookie-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.3rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cookie-btn.info {
    background: #353b45;
    color: #fff;
}
.cookie-btn:hover {
    background: #1e40af;
    color: #fff;
}
.cookie-btn.info:hover {
    background: #5faee3;
    color: #23272f;
}
@media (max-width: 700px) {
    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem 1rem;
        font-size: 0.98rem;
    }
    .cookie-bar-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.hero-image-container {
    border: 12px solid #3662e3;
    padding: 0px;
    border-radius: 16px;
}

.hero-image-container img {
    border-radius: 6px;
}

.whatsapp-float-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24);
    color: #fff;
}

.whatsapp-float-bubble {
    max-width: 240px;
    background: #fff;
    color: #2d2d2d;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
    position: relative;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float-bubble::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 14px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.05);
}

.whatsapp-float-bubble.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

html[dir="rtl"] .whatsapp-float-wrap {
    right: auto;
    left: 20px;
    flex-direction: row !important;
}

html[dir="rtl"] .whatsapp-float-bubble::after {
    right: auto;
    left: -7px;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.05);
}

@media (max-width: 1023px) {
    .index-banner {
      gap: 16px;
    }
    .hero-image-container {
        border: 8px solid #3662e3;
        width: 92%;
        margin: 0 auto;
    }
    .hero-image-container img {
        border-radius: 8px;
    }
}

@media (max-width: 545px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float-wrap {
        right: 14px;
        bottom: 14px;
    }
    .whatsapp-float-bubble {
        max-width: 200px;
        font-size: 12px;
        padding: 8px 12px;
    }

    html[dir="rtl"] .whatsapp-float-wrap {
        right: auto;
        left: 14px;
    }
}