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

:root {
    --primary: #E11D48;
    --primary-hover: #BE123C;
    --background: #FFFFFF;
    --surface: #F8FAFC;
    --text-main: #0F172A;
    --text-dim: #64748B;
    --border: #E2E8F0;
    --card-bg: #FFFFFF;
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
}

.btn-outline {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(225, 29, 72, 0.05);
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-main);
}

.section-title span {
    color: var(--primary);
}

.glass {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

/* Header Redesign */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 90px;
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.logo-container {
    position: relative;
    background: #F1F5F9;
    padding: 0 60px 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-cta {
    padding-right: 40px;
}

.btn-tracking {
    background: linear-gradient(180deg, #F43F5E 0%, #E11D48 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: var(--transition);
}

.btn-tracking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    filter: brightness(1.1);
}

/* Package Page - Wide Cards */
.package-wide-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.package-wide-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.package-wide-card:nth-child(even) {
    flex-direction: row-reverse;
}

.package-wide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(225, 29, 72, 0.2);
}

.wide-card-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
}

.wide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-wide-card:hover .wide-card-image img {
    transform: scale(1.05);
}

.wide-card-content {
    width: 55%;
    padding: 50px;
}

.wide-card-header {
    margin-bottom: 25px;
}

.wide-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1E293B;
    display: block;
    margin-bottom: 5px;
}

.wide-card-price {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 700;
}

.wide-card-features {
    list-style: none;
    margin-bottom: 25px;
    width: 100%;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3B82F6;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 15px;
    user-select: none;
    transition: var(--transition);
}

.accordion-toggle::before {
    content: '▶';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.accordion-toggle.active::before {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
    margin-bottom: 20px;
}

.accordion-content.active {
    max-height: 500px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.wide-card-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #64748B;
    font-size: 0.95rem;
    font-weight: 500;
}

.wide-card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #E11D48;
    font-weight: bold;
}

.btn-apply-red {
    background: #E11D48;
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-apply-red:hover {
    background: #BE123C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

.wide-card-tag {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #E11D48;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), url('https://arcadia-all.shop/uppic/uploads/full/6995ac741a51a.jpg');
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-dim);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

/* Subpage Header */
.page-header {
    padding: 200px 0 100px 0;
    background: var(--surface);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.breadcrumb {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 50px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

/* Recommended Section */
.recommended-single {
    padding: 120px 0 40px 0;
    background: radial-gradient(circle at top, #FEF2F2 0%, #FFFFFF 100%);
    text-align: center;
}

.recommended-title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #0F172A;
}

.recommended-title span {
    color: #E11D48;
    position: relative;
}

.recommended-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E11D48;
    border-radius: 2px;
}

.package-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.recommended-card-large {
    background: white;
    border-radius: 30px;
    padding: 60px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.05);
    border: 1px solid rgba(225, 29, 72, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.recommended-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(225, 29, 72, 0.12);
}

.recommended-card-large.highlight-card {
    border: 2px solid #E11D48;
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 40px 100px rgba(225, 29, 72, 0.15);
}

.recommended-card-large.highlight-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: 30px;
    right: -45px;
    background: #E11D48;
    color: white;
    padding: 8px 60px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.card-pack-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748B;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-price-large {
    font-size: 4rem;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 40px;
    line-height: 1;
}

.card-price-large span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748B;
    margin-left: 8px;
}

.card-features-list {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
    flex-grow: 1;
}

.card-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
}

.feature-check {
    color: #E11D48;
    font-size: 1.2rem;
}

.btn-large-red {
    background: #E11D48;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-large-red:hover {
    background: #BE123C;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}

@media (max-width: 992px) {
    .package-grid-3 {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 50px;
    }

    .recommended-card-large.highlight-card {
        transform: scale(1);
    }

    .recommended-card-large.highlight-card:hover {
        transform: translateY(-10px);
    }
}

/* Partners */
.partners {
    padding: 40px 0 100px 0;
    overflow: hidden;
    background: #fff;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    padding: 10px;
    height: 100px;
    width: 200px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: white;
}

.partner-logo img {
    max-height: 80%;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* News */
.news {
    padding: 120px 0;
    background: var(--background);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
}

.news-card {
    overflow: hidden;
    transition: var(--transition);
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #fff;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--surface);
}

.news-content {
    padding: 35px;
}

.news-date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.news-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    color: var(--text-main);
}

.news-content p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

/* Footer Redesign */
footer {
    border-top: 1px solid var(--border);
    background: #FFFFFF;
    color: #334155;
    padding: 0;
}

.footer-top {
    padding: 80px 0;
    background: #F8FAFC;
    background-image: radial-gradient(#E2E8F0 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    color: #1E293B;
    margin-bottom: 25px;
    display: block;
}

.footer-brand p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
}

.footer-contact-info h4 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 25px;
}

.footer-contact-info p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E11D48;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    text-decoration: none;
}

.footer-bottom {
    background: #b31313;
    color: white;
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    color: #FECDD3;
    /* Light pinkish */
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Policy Popup */
.policy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px 30px 0 0;
    max-height: 80vh;
    padding: 0;
    overflow: hidden;
}

.policy-popup.show {
    bottom: 0;
}

.policy-header {
    padding: 25px 40px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.policy-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 800;
}

.policy-close {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.policy-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.policy-content {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(80vh - 150px);
    line-height: 1.8;
    color: #475569;
}

.policy-footer {
    padding: 20px 40px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    background: #f8fafc;
}

.btn-accept-policy {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept-policy:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.policy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.policy-overlay.show {
    opacity: 1;
    visibility: visible;
}

.footer-legal a {
    color: #FECDD3;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 2000;
}

.chat-bubble {
    pointer-events: auto;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1E293B;
    font-weight: 700;
    font-size: 0.9rem;
}

.chat-icon {
    width: 45px;
    height: 45px;
    background: #E11D48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.back-to-top {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #9F1239;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #1E3A8A;
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
        top: 10px;
        width: 98%;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .footer-top .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand p,
    .footer-brand {
        margin: 0 auto;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }

    .package-wide-card,
    .package-wide-card:nth-child(even) {
        flex-direction: column;
    }

    .wide-card-image,
    .wide-card-content {
        width: 100%;
    }

    .wide-card-image {
        height: 250px;
    }

    .wide-card-content {
        padding: 30px 20px;
    }

    .wide-card-tag {
        top: 20px;
        right: 20px;
        background: white;
        padding: 4px 10px;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-title {
        font-size: 2.75rem;
    }
}

/* Trust Stats Bar */
.trust-stats-bar {
    padding: 60px 0 20px 0;
    margin-top: 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.stats-grid {
    background: white;
    padding: 30px 60px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    margin: 0 30px;
}

@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
        margin: 0 auto;
    }

    .trust-stats-bar {
        margin-top: 0;
        padding: 30px 0;
    }
}