:root {
    --navy: #0F2A44;
    --blue: #1568A8;
    --cyan: #3FA9C9;
    --offwhite: #F4F8FB;
    --ink: #132033;


}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background-color: #ffffff;
}

h1, h2, h3, .serif {
    font-family: 'Fraunces', serif;
    color: var(--navy);
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid rgba(15, 42, 68, 0.07);
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
}
.navbar-brand {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.08em;
}
.navbar-brand span {
    color: var(--blue);
}


.nav-link {
    color: var(--navy);
    opacity: 0.72;
    font-size: 14px;
}
.nav-link:hover {
    opacity: 1;
}

/* این استایل‌ها فقط روی لینک‌های داخل منوی موبایل اعمال می‌شوند تا تداخلی با دسکتاپ نداشته باشند */
.mobile-nav-link {
    font-size: 16px !important;
    color: var(--navy) !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(15, 42, 68, 0.1);
}


.offcanvas-header {
    padding: 20px 24px;
}

.offcanvas-body {
    padding: 20px 24px;
}

.border-bottom{
}

/* Buttons */
.btn-custom-outline {
    border: 1px solid rgba(15, 42, 68, 0.12);
    color: var(--navy);
    border-radius: 2px;
    font-size: 13px;
    padding: 10px 20px;
    text-decoration: none;
}
.btn-custom-primary {
    background-color: var(--navy);
    color: white;
    border-radius: 2px;
    font-size: 13px;
    padding: 10px 20px;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    padding: 90px 0;
}
.eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 24px;
}
.hero-title em {
    color: var(--blue);
    font-style: italic;
}
.hero-lead {
    font-size: 16.5px;
    opacity: 0.68;
    font-weight: 100;
    max-width: 440px;
    margin-bottom: 36px;
}
/* Hero Slideshow Base */
.hero-slideshow {
    position: relative;
    border-radius: 4px;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--navy);
}

/* Slideshow Images */
.hero-slideshow .hero-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s ease, transform 6.5s ease;
}
.hero-slideshow .hero-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Slideshow Gradient Shade */
.hero-slideshow-shade {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(15,42,68,0.55), transparent 30%, transparent 55%, rgba(15,42,68,0.55));
    pointer-events: none;
    z-index: 1;
}

/* Brand Tags & Badge Overlay */
.hero-slideshow-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}
.tag-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tag-logo {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.tag-logo span {
    color: var(--cyan);
}
.tag-sub {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* Badge and Animation */
.hero-slideshow-badge {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.hero-slideshow-badge::before {
    content: "";
    position: absolute;
    top: -16px; right: -16px; bottom: -16px; left: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,169,201,0.4), transparent 70%);
    filter: blur(3px);
}
.hero-slideshow-badge svg {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: guardFloat 7s ease-in-out infinite;
}
@keyframes guardFloat {
    0% { transform: translateY(0) rotateY(0) rotateX(2deg); }
    25% { transform: translateY(-7px) rotateY(9deg) rotateX(0); }
    50% { transform: translateY(-11px) rotateY(0) rotateX(-2deg); }
    75% { transform: translateY(-7px) rotateY(-9deg) rotateX(0); }
    100% { transform: translateY(0) rotateY(0) rotateX(2deg); }
}

/* Slideshow Navigation Dots */
.hero-slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}
.hero-slideshow-dots span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
}
.hero-slideshow-dots span.active {
    background: var(--cyan);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--offwhite);
    padding: 110px 0;
}
.benefit-card {
    background: white;
    border: 1px solid rgba(15, 42, 68, 0.12);
    border-radius: 10px;
    padding: 38px 36px 34px;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(21, 104, 168, 0.35);
}
.benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EEF4F9;
    font-family: 'Fraunces', serif;
    color: var(--blue);
    margin-bottom: 16px;
}
.benefit-card h3 {
    font-size: 19.5px;
    margin-bottom: 11px;
}
.benefit-card p {
    font-size: 14.5px;
    opacity: 0.65;
    font-weight: 300;
}

/* Partner Section */
.partner-section {
    background: linear-gradient(100deg, rgba(15, 42, 68, 0.97), rgba(15, 42, 68, 0.88) 45%, rgba(15, 42, 68, 0.6)), var(--navy);
    color: white;
    padding: 110px 0;
}
.partner-section h2 {
    color: white;
    font-size: 34px;
}
.partner-eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.partner-lead {
    font-size: 15.5px;
    opacity: 0.68;
    font-weight: 300;
    line-height: 1.65;
}
.btn-custom-cyan {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    font-size: 13px;
    padding: 13px 26px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.btn-custom-cyan:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}
.partner-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.partner-steps li {
    display: flex;
    gap: 22px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.partner-steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.step-num {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--cyan);
    min-width: 32px;
}
.partner-steps h3 {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}
.partner-steps p {
    font-size: 13px;
    opacity: 0.6;
    font-weight: 300;
    margin: 0;
}

/* Product Section */
.product-section {
    background-color: var(--offwhite);
    padding: 110px 0;
}

/* Product Visual Box */
.product-visual {
    background: white;
    border: 1px solid rgba(15, 42, 68, 0.12); /* var(--line) */
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Texts */
.product-copy .eyebrow {
    margin-bottom: 16px;
    display: block;
}

.product-title {
    font-size: 33px;
    margin-bottom: 18px;
    font-weight: 400;
}

.product-desc {
    font-size: 15.5px;
    opacity: 0.68;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 460px;
    line-height: 1.65;
}

/* Specifications List */
.spec-list {
    border-top: 1px solid rgba(15, 42, 68, 0.12);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(15, 42, 68, 0.12);
    font-size: 14px;
}

.spec-label {
    color: var(--navy);
    opacity: 0.5;
    letter-spacing: 0.03em;
}

.spec-val {
    font-weight: 500;
    color: var(--navy);
    text-align: right;
}


/* Experience Section */
.experience-section {
    padding: 110px 0;
    background-color: #ffffff;
}

/* Pack Note */
.pack-note {
    font-size: 13px;
    color: var(--blue);
    opacity: 0.8;
    margin-top: 15px;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Banner */
.experience-banner {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 21/8;
}
.experience-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pack Grid Items */
.pack-item {
    text-align: center;
}

.pack-item h3 {
    font-size: 14.5px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

.pack-item p {
    font-size: 12.5px;
    opacity: 0.58;
    font-weight: 300;
    max-width: 250px;
    margin: 0 auto;
}

/* Floating Icons */
.pack-icon {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(15, 42, 68, 0.12); /* var(--line) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: var(--offwhite);
    animation: iconFloat 4.5s ease-in-out infinite;
}

.pack-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
}

/* Animation Delays */
.pack-icon.delay-1 { animation-delay: 0s; }
.pack-icon.delay-2 { animation-delay: 0.5s; }
.pack-icon.delay-3 { animation-delay: 1s; }
.pack-icon.delay-4 { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pack-icon {
        animation: none;
    }
}

/* Footer */
footer {
    background-color: var(--navy);
    color: white;
    padding: 60px 0 20px;
}
.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 24px;
}
.footer-brand span { color: var(--blue); }
.footer-link {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 13.5px;
    display: block;
    margin-bottom: 10px;
}
.footer-link:hover { color: white; }

/* Mobile offcanvas nav brand (extracted from inline style in partials/navbar.blade.php) */
.offcanvas-brand { font-family: 'Fraunces', serif; }
