/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-color: #334155;
    --heading-color: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

.handwritten-font {
    font-family: 'Patrick Hand', cursive;
    color: #0ea5e9 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #07152f 0%, #0f2d6d 30%, #1d4ed8 100%);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #a5d8ff;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-bar-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #dbeafe;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.top-bar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.top-bar-cta:hover {
    background: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(135deg, rgba(7, 21, 47, 0.96), rgba(22, 61, 140, 0.94), rgba(29, 78, 216, 0.88));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(9, 17, 36, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding: 0.8rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.navbar-logo {
    display: block;
    width: 120px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(96, 165, 250, 0.2));
}

.navbar-nav {
    gap: 0.2rem;
}

.nav-link {
    position: relative;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 0.72rem 0.9rem !important;
    border-radius: 12px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 2px;
    background: linear-gradient(90deg, #9bd7ff, #dbeafe);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.45rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(191, 219, 254, 0.24);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    margin-top: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

/* Main dropdown hover effect - Desktop only */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease forwards;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 12px;
    color: #334155;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #e2e8f0;
    color: var(--primary-color);
}

.dropdown-item:active {
    background-color: #cbd5e1;
    color: black !important;
}

.dropdown-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: #64748b;
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

/* Nested Dropdown Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 1px;
    border-radius: 12px;
    min-width: 200px;
    display: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Show submenu on hover for desktop */
@media (min-width: 992px) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        animation: slideInRight 0.3s ease forwards;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Arrow for dropdown items with submenu */
.dropdown-item.dropdown-toggle::after {
    content: "›";
    border: none;
    font-size: 18px;
    margin-left: auto;
    margin-right: 0;
    color: #94a3b8;
    transition: transform 0.3s;
    display: inline-block;
}

/* Rotate arrow when submenu is shown */
.dropdown-submenu:hover>.dropdown-item.dropdown-toggle::after {
    transform: rotate(90deg);
}

/* Mobile styles */
@media (max-width: 991px) {
    .dropdown-submenu>.dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        margin-left: 20px;
        border-left: 2px solid #e2e8f0;
        box-shadow: none;
        border-radius: 0 0 12px 12px;
        display: none;
        opacity: 1;
        transform: none;
    }

    /* Show submenu when parent has .show class (for mobile) */
    .dropdown-submenu.show>.dropdown-menu {
        display: block !important;
    }

    .dropdown-item.dropdown-toggle::after {
        transform: rotate(0deg);
        transition: transform 0.3s;
    }

    .dropdown-submenu.show>.dropdown-item.dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

/* Hero Section */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Hero Carousel */
.hero-carousel {
    box-shadow: none;
    border-radius: 0;
}

.hero-carousel img {
    height: 85vh;
    min-height: 500px;
    object-fit: cover;
}

.carousel-item h1 {
    color: #7dd3fc;
    text-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
}

.carousel-item p {
    color: #eaf6ff;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.25);
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: var(--primary-color) !important;
    opacity: 0.5;
    margin: 0 5px !important;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Project Architecture Animation */
.architecture-section {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.max-w-800 {
    max-width: 800px;
}

.workflow-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    align-items: end;
    gap: 28px;
    margin-top: 50px;
    position: relative;
}

.workflow-layout::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 20%;
    top: 34%;
    height: 2px;
    border-top: 2px dashed rgba(148, 163, 184, 0.7);
    z-index: 0;
}

.workflow-step,
.workflow-promo {
    position: relative;
    z-index: 1;
    text-align: center;
}

.workflow-visual {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 7px solid rgba(255, 255, 255, 0.85);
}

.workflow-visual::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.workflow-visual--pink {
    background: linear-gradient(135deg, #f7d2d9 0%, #f6f1f3 100%);
}

.workflow-visual--soft {
    background: linear-gradient(135deg, #ebf8ff 0%, #e8f0ff 100%);
}

.workflow-visual--blue {
    background: linear-gradient(135deg, #d9f2ff 0%, #e9f7ff 100%);
}

.workflow-figure {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-image-wrap {
    width: 76%;
    height: 76%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 26px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.workflow-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workflow-title {
    font-family: 'Patrick Hand', cursive;
    color: #1fa7e8;
    font-size: clamp(2rem, 2.4vw, 3.2rem);
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 18px rgba(31, 167, 232, 0.12);
}

.workflow-title--final {
    margin-top: 16px;
}

.workflow-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.promo-card {
    width: 100%;
    max-width: 250px;
    min-height: 150px;
    border-radius: 28px;
    background: linear-gradient(135deg, #9be7ff 0%, #7ad6ff 40%, #57baf6 100%);
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(77, 183, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px 12px;
    overflow: hidden;
}

.promo-card::before,
.promo-card::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.promo-card::before {
    left: 10px;
}

.promo-card::after {
    right: 10px;
}

.promo-card--top {
    min-height: 120px;
}

.promo-card--bottom {
    min-height: 150px;
    background: linear-gradient(135deg, #9fe4ff 0%, #78d2ff 40%, #6ac7f7 100%);
}

.promo-label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.promo-card strong {
    display: block;
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    margin: 8px 0;
}

.promo-small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.promo-off {
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 8px;
}

@media (max-width: 1199.98px) {
    .workflow-layout {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 40px 18px;
    }

    .workflow-layout::before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .architecture-section {
        padding: 70px 0 50px;
    }

    .workflow-layout {
        grid-template-columns: 1fr;
    }

    .workflow-visual {
        width: 190px;
        height: 190px;
    }

    .promo-card {
        max-width: 220px;
    }
}

/* Mission & Services */
.mission-text {
    max-width: 900px;
    font-size: 1.1rem;
    color: #0ea5e9;
    line-height: 1.8;
}

.service-item {
    padding: 10px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-title {
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pricing Cards */
.pricing-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.plan-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    isolation: isolate;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08), rgba(249, 115, 22, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 28px 70px rgba(37, 99, 235, 0.14);
    border-color: rgba(37, 99, 235, 0.28);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.plan-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.plan-card:hover .plan-media img {
    transform: scale(1.08);
}

.plan-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.plan-body {
    padding: 22px 20px 20px;
}

.plan-body h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    min-height: 68px;
    margin-bottom: 14px;
    color: var(--heading-color);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

.plan-currency {
    font-size: 1.15rem;
    font-weight: 700;
}

.plan-period {
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 0;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.55;
}

.plan-features li i {
    margin-top: 3px;
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.plan-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.28);
    filter: brightness(1.04);
}

.plan-card:nth-child(2n) .plan-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.22);
}

.plan-card:nth-child(3n) .plan-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.pricing-carousel {
    position: relative;
    padding: 0 52px;
}

.pricing-carousel .carousel-indicators {
    bottom: -16px;
}

.pricing-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.3);
    border: none;
}

.pricing-carousel .carousel-indicators .active {
    background-color: #2563eb;
}

.pricing-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.pricing-nav .carousel-control-prev-icon,
.pricing-nav .carousel-control-next-icon {
    filter: invert(1) grayscale(1);
}

.pricing-nav.prev {
    left: 0;
}

.pricing-nav.next {
    right: 0;
}

@media (max-width: 767.98px) {
    .pricing-carousel {
        padding: 0 24px;
    }

    .pricing-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767.98px) {
    .pricing-section {
        padding: 70px 0;
    }

    .plan-body h3 {
        min-height: auto;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #020617 0%, #1e3a8a 100%);
    /* Blue Gradient */
    color: #94a3b8;
    padding: 80px 0 30px;
    position: relative;
}

/* Rainbow Border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right,
            #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff);
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 96px;
    width: 54px;
    height: 54px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.35s ease;
    z-index: 9998;
    cursor: pointer;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 30px rgba(59,130,246,0.32);
    border-color: rgba(191, 219, 254, 1);
    color: #dbeafe;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ddc74, #1abf63);
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    border: 2px solid rgba(255,255,255,0.7);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.42);
    filter: brightness(1.08);
    color: #fff;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: #dbeafe;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.footer-policy-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.seo-trust-section {
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    line-height: 1.8;
}

.seo-check-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,0.85));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 1.6rem 1.3rem;
    height: 100%;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seo-check-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.16);
}

.seo-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.25);
}

.seo-check-card h5 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    color: #0f172a;
}

.legal-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.legal-header {
    background: linear-gradient(135deg, #0f172a, #1d4ed8 52%, #2563eb 100%);
    color: #fff;
    padding: 90px 0 60px;
}

.legal-header h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.legal-header .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.legal-header .breadcrumb-item,
.legal-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.legal-header .breadcrumb-item.active {
    color: #dbeafe;
}

.legal-section {
    padding: 70px 0;
}

.legal-card {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-card h3 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.7rem;
}

.legal-card p,
.legal-card li {
    color: #475569;
    line-height: 1.9;
    font-size: 1rem;
}

.legal-list {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

.privacy-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
    border-left: 4px solid #2563eb;
    border-radius: 16px;
    padding: 18px 20px;
    margin: 20px 0;
}

.seo-check-card p {
    margin-bottom: 0;
    color: #475569;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .navbar-brand {
        width: 100px;
        margin-right: 0.5rem;
    }

    .navbar-logo {
        width: 100px;
    }

    .navbar-nav {
        padding: 10px 0;
        gap: 0.25rem;
    }

    .dropdown-menu {
        margin: 5px 0;
        border-radius: 8px;
    }
}

/* Prevent body scrolling when dropdown is open on mobile */
@media (max-width: 991px) {
    body.dropdown-open {
        overflow: hidden;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}