:root {
    --primary: #0B0F2F;
    --secondary: #6C63FF;
    --accent: #ff7400;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --muted-light: rgba(255, 255, 255, 0.7);
    --transition: all 0.3s ease;
}

html,
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

section[id] {
    scroll-margin-top: 100px;
}

/* Navbar */
.navbar {
    /* background: rgba(11, 15, 47, 0.8); */
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff740022;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.py-3 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.text-accent {
    color: var(--accent);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #000000 !important;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Buttons */
.btn-accent {
    background-color: #ff7400;
    border: 2px solid #ff7400;
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #ff7400 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 116, 0, 0.3);
}

.btn-outline-accent {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 15px 0;
    background: #fbf5f5;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-light-muted {
    color: #555555;
}

.hero-section h1 {
    color: #000000;
    font-size: 42px;
    /* font-weight: 800; */
    line-height: 1.07;
}

.hero-section p {
    color: #333333;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper img {
    border: 8px solid #f8f9fa;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

.card-1 {
    top: 10%;
    left: -20px;
}

.card-2 {
    bottom: 20%;
    right: -20px;
}

/* Sections */
.py-100 {
    padding: 50px 0;
}

.bg-light-section {
    background: linear-gradient(180deg, #f5efea 0%, #fff8f2 100%);
    color: var(--text-dark);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Feature Cards (Why Choose) */
.feature-card {
    background: #FFFFFF;
    padding: 45px 35px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 116, 0, 0.08);
    border-color: rgba(255, 116, 0, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #FFF5EE;
    /* Ultra soft orange */
    color: #ff7400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: #ff7400;
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
}

.icon-box i {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.product-img {
    height: 250px;
    background: #1a1e3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    padding: 30px;
}

.product-content ul {
    list-style: none;
    padding: 0;
}

.product-content li {
    margin-bottom: 10px;
    padding-left: 0;
    position: relative;
    color: var(--muted-light);
}

.product-content li::before {
    content: none;
}

/* Modern Product Card Design */
.bg-dark-product {
    background-color: #05081a;
    position: relative;
}

.product-card-modern {
    background: #0f1335;
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card-modern:hover {
    transform: translateY(-15px);
    background: #161b4a;
    border-color: rgba(255, 116, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.product-img-modern {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-img-modern img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img-modern img {
    transform: scale(1.05);
}

.product-info-modern {
    padding: 5px 10px;
}

.product-info-modern h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.product-info-modern .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-info-modern .feature-list li {
    color: #b0b5d0;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.product-card-modern:hover .feature-list li {
    color: #fff;
}

/* Pricing */
/* Premium Package Styling (Final Design Refinement) */
.package-group-divider {
    position: relative;
    text-align: center;
    margin: 60px 0 40px;
}

.package-group-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #0B0F2F;
    z-index: 1;
}

.package-group-header {
    background: #05081a;
    color: white;
    padding: 10px 40px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.package-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.package-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.header-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-medal {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    flex-shrink: 0;
}

.package-medal i {
    font-size: 24px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 4px;
    margin-top: 15px;
    color: #0B0F2F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-price-badge {
    background: #ff004c;
    color: white;
    padding: 4px 18px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 0, 76, 0.25);
    letter-spacing: 0.5px;
}

.package-preview-grid {
    padding: 10px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: #fff;
}

.package-preview-item {
    aspect-ratio: 3/4;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
}

.package-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-features-list {
    padding: 25px 30px;
    list-style: none;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.package-features-list li {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-weight: 600;
}

.package-buy-now {
    padding: 0 30px 25px;
    text-align: center;
}

.btn-buy-now {
    display: inline-block;
    background: #d81b60;
    color: white;
    padding: 8px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(11, 15, 47, 0.2);
    border: 2px solid #d81b60;
}

.btn-buy-now:hover {
    background: white;
    color: #0B0F2F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 15, 47, 0.15);
}

.btn-details {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    border: 2px solid #e91e63;
    text-transform: uppercase;
}

.btn-details:hover {
    background: white;
    color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

.btn-details-outline {
    display: inline-block;
    background: transparent;
    color: #e91e63;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #e91e63;
    text-transform: uppercase;
}

.btn-details-outline:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

/* Custom Circle for Features */
.feature-check {
    width: 16px;
    height: 16px;
    border: 1.5px solid #bbb;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-client-get {
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: auto;
    text-transform: uppercase;
}

.package-client-get i {
    font-size: 1.5rem;
}

/* Theme Colors */
.package-card-premium.silver {
    border-top: 5px solid #C0C0C0;
}

.package-card-premium.silver .package-client-get {
    background: #D81B60;
}

.package-card-premium.gold {
    border-top: 5px solid #FFD700;
}

.package-card-premium.gold .package-client-get {
    background: #F57C00;
}

.package-card-premium.diamond {
    border-top: 5px solid #00BCD4;
}

.package-card-premium.diamond .package-client-get {
    background: #0288D1;
}

.package-card-premium.starter {
    border-top: 5px solid #4CAF50;
}

.package-card-premium.starter .package-client-get {
    background: #e91e63;
}

.package-card-premium.pro {
    border-top: 5px solid #9C27B0;
}

.package-card-premium.pro .package-client-get {
    background: #7B1FA2;
}

.package-card-premium.elite {
    border-top: 5px solid #0D47A1;
}

.package-card-premium.elite .package-client-get {
    background: #01579B;
}

/* Signature Premium Section (Wide Layout) */
.signature-plan-wrapper {
    background: #fdf5f0;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid #0B0F2F;
    margin-top: 60px;
}

.signature-left-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Signature Premium Detailed Layout */
.signature-plan-banner {
    background: #FFF9F2;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    margin-top: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

@media (max-width: 991px) {
    .signature-plan-banner {
        flex-direction: column;
    }

    .signature-left-panel {
        width: 100% !important;
    }

    .signature-addons-side {
        width: 100% !important;
        border-left: none !important;
        border-top: 1px solid #D4AF37;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

.signature-left-panel {
    background: #0B0F2F;
    color: white;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.signature-branding-header {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1f4d 0%, #0B0F2F 100%);
    position: relative;
}

.signature-wreath {
    margin-bottom: 15px;
}

.signature-wreath img {
    width: 120px;
}

.signature-branding-header h2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #D4AF37;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.signature-price-ribbon {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: #000;
    font-weight: 900;
    font-size: 1.4rem;
    padding: 10px 20px;
    margin: 20px -25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.signature-price-ribbon::before,
.signature-price-ribbon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    border: 5px solid transparent;
}

.signature-price-ribbon::before {
    left: 0;
    border-top-color: #5d4037;
    border-right-color: #5d4037;
}

.signature-price-ribbon::after {
    right: 0;
    border-top-color: #5d4037;
    border-left-color: #5d4037;
}

.signature-buy-now {
    position: relative;
    z-index: 10;
}

.signature-btn {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000 !important;
    padding: 8px 40px !important;
    font-size: 1rem !important;
}

.signature-btn:hover {
    background: white !important;
    color: #D4AF37 !important;
    border-color: white !important;
    transform: translateY(-3px);
}

.signature-features-tan {
    background: #F5E6D3;
    color: #333;
    padding: 25px;
    flex-grow: 1;
    text-align: left;
    /* Ensure text is left-aligned */
}

.signature-features-tan ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signature-features-tan li {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.signature-features-tan li::before {
    content: '\2022';
    /* Standard bullet point */
    position: absolute;
    left: 0;
    color: #000;
}

.signature-main-grid {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #D4AF37;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-left: 2px solid #D4AF37;
    border-right: 2px solid #D4AF37;
}

.signature-main-grid img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

@media (max-width: 991px) {
    .signature-main-grid {
        height: auto;
    }
}

@media (max-width: 575px) {
    .signature-main-grid {
        height: auto;
    }
}

.grid-product-item {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 35px 5px;
    /* Reduced padding */
    border: 0.5px solid #eee;
}

.product-label {
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.2;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-sublabel {
    font-size: 0.6rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.product-image-container {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.signature-addons-side {
    width: 140px;
    background: white;
    border-left: none;
    padding: 20px 10px;
    flex-shrink: 0;
    text-align: center;
}

.addon-header {
    font-size: 0.75rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 20px;
}

.addon-mini-card {
    margin-bottom: 25px;
}

.addon-icon-box {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.addon-icon-box.purple {
    background: #6f42c1;
}

.addon-icon-box.red {
    background: #dc3545;
}

.addon-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #555;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .signature-plan-banner {
        flex-direction: column;
    }

    .signature-left-panel {
        width: 100%;
    }

    .signature-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .signature-addons-side {
        width: 100%;
        display: flex;
        justify-content: space-around;
        border-left: none;
        border-top: 1px solid #D4AF37;
    }
}

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

.signature-features-grid li {
    font-size: 0.8rem;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
}

.signature-features-grid li i {
    color: #FFD700;
    font-size: 12px;
    margin-top: 3px;
}

.signature-right-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.signature-item-card {
    background: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.signature-item-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.signature-item-card span {
    font-size: 0.65rem;
    font-weight: 700;
    display: block;
    color: #0B0F2F;
}

.add-ons-panel {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.add-ons-panel h6 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
}

.add-on-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.add-on-icon {
    width: 40px;
    height: 40px;
    background: #F3E5F5;
    color: #7B1FA2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-on-item span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #555;
}

/* Signature Card */
.signature-card {
    background: linear-gradient(135deg, #1a1e3d 0%, #0b0f2f 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.price-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent);
    padding: 20px;
    border-radius: 20px;
}

/* Steps */
.step-card {
    position: relative;
    padding: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* How It Works */
.how-it-works-section {
    background-color: #f7f7f7;
    padding: 70px 0;
}

.how-it-works-section .section-title {
    color: #1a1a1a !important;
}

.step-card {
    padding: 30px;
    transition: var(--transition);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(255, 116, 0, 0.2);
    position: relative;
    z-index: 1;
}

.how-it-works-section h3 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-it-works-section p {
    color: #666;
    margin-bottom: 0;
}

/* Add connecting lines between steps for desktop */
@media (min-width: 992px) {
    .step-card {
        position: relative;
    }

    .col-md-3:not(:last-child) .step-card::after {
        content: '';
        position: absolute;
        top: 60px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(to right, #ff7400 0, #ff7400 5px, transparent 5px, transparent 10px);
        z-index: 0;
        opacity: 0.3;
    }
}

.cta-section {
    background: linear-gradient(135deg, #11142d 0%, #05081a 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 116, 0, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.cta-section h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.6rem !important;
    }

    .cta-section .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    .cta-section .btn {
        width: 100%;
        padding: 12px 30px !important;
        font-size: 1.1rem !important;
    }
}

.text-yellow {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 116, 0, 0.2);
}

.btn-yellow {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 45px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 116, 0, 0.4);
}

.btn-yellow:hover {
    background-color: #e66900;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 116, 0, 0.6);
    color: #fff;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 15px 45px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #333;
    transform: translateY(-5px);
}

.footer-section {
    background-color: #0b0f2f;
    color: #FFFFFF;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section .text-light-muted {
    color: #FFFFFF !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card.popular {
        transform: none;
        margin: 20px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-bg-shapes {
        display: none;
    }
}

/* Footer Alt Design */
.footer-alt-section {
    background: linear-gradient(to right, #ff7400, #4a2c11);
    border-top: none;
    padding: 10px;
}

.social-icon-white {
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-white:hover {
    transform: translateY(-5px);
    background: #f8f8f8;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-instagram {
    color: #E4405F;
}

.icon-facebook {
    color: #1877F2;
}

.icon-youtube {
    color: #FF0000;
}

.social-icon-white i {
    width: 22px;
    height: 22px;
    color: inherit;
}

.icon-whatsapp i {
    color: #25D366 !important;
}

.icon-instagram i {
    color: #E4405F !important;
}

.icon-facebook i {
    color: #1877F2 !important;
}

.icon-youtube i {
    color: #FF0000 !important;
}

.footer-policy-links {
    font-size: 0.9rem;
}

.footer-policy-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 5px;
    transition: var(--transition);
}

.footer-policy-links a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 10px;
}

.footer-copyright p {
    color: #FFFFFF !important;
    opacity: 1 !important;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #FFFFFF;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 116, 0, 0.15);
    border: 1px solid rgba(255, 116, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
    color: white;
}

.social-links a i {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.text-primary {
    --bs-text-opacity 1: 1;
    color: rgb(255 116 0) !important;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
}

.web-footer {
    background: var(--gradiant-bg);
    color: #fff;
    padding: 30px 0 30px;
}

.web-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col .socialLinkLinks {
    display: flex;
    gap: 15px;
}

/* Roadmap Section */
.roadmap-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.roadmap-icon {
    width: 45px;
    height: 45px;
    background: #FFF5EE;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.roadmap-card:hover .roadmap-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(10deg);
}

.roadmap-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .roadmap-card {
        padding: 15px;
    }

    .roadmap-card h4 {
        font-size: 0.85rem;
    }
}

padding: 0px;
margin: 0px;
margin-bottom: 5px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.footer-col .socialLinkLinks li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.footer-col .socialLinkLinks li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    font-size: 16px;
    line-height: 34px;
    transition: 0.3s;
}

/* WhatsApp */
.footer-col .socialLinkLinks li.whatsapp a {
    color: #25D366;
}

/* Instagram */
.footer-col .socialLinkLinks li.instagram a {
    color: #E4405F;
}

/* Facebook */
.footer-col .socialLinkLinks li.facebook a {
    color: #1877F2;
}

/* YouTube */
.footer-col .socialLinkLinks li.youtube a {
    color: #FF0000;
}

/* LinkedIn */
.footer-col .socialLinkLinks li.linkedin a {
    color: #0A66C2;
}

/* Twitter / X */
.footer-col .socialLinkLinks li.twitter a {
    color: #1DA1F2;
}

/* Hover effect */
.socialLinkLinks li a:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact-info-card {
    background: #FFFFFF;
    color: #1a1a1a;
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: var(--transition);
}

.contact-item:hover {
    background: #FFF9F5;
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: #FFF5EE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.4rem;
    box-shadow: 0 8px 16px rgba(255, 116, 0, 0.1);
}

.contact-text h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.contact-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2px;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

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

.demo-booking-card {
    background: #dbd4d4;
    padding: 60px 45px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-booking-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
}

.demo-input {
    border: 1px solid #fce8e8;
    border-radius: 12px;
    padding: 12px 20px;
    background: #fdfcfe;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    font-size: 1rem;
    color: #333;
}

.demo-input:focus {
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(255, 116, 0, 0.1);
    border-color: #ff7400;
    outline: none;
}

.demo-input::placeholder {
    color: #adb5bd;
}

.btn-demo-submit {
    background: #ff7400;
    color: white;
    border: none;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 116, 0, 0.3);
}

.btn-demo-submit:hover {
    background: #e66900;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 116, 0, 0.4);
}

.fw-800 {
    font-weight: 800;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.footer-col .ftLinks {
    padding: 0px;
    margin: 0px;
    margin-bottom: 5px;
}

.footer-col .ftLinks li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.footer-col .ftLinks li:after {
    content: '|';
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 10px
}

.footer-col .ftLinks li:last-child:after {
    display: none;
}

.footer-col .ftLinks li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col .ftLinks li a:hover {
    color: #fff;
}

.footer-alt-section {
    background: linear-gradient(to bottom, #ff7400 0%, #1a0f08 100%);
    padding: 30px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.social-icon i {
    font-size: 20px;
    line-height: 1;
}

.social-icon.whatsapp i {
    color: #25D366;
}

.social-icon.instagram i {
    color: #E4405F;
}

.social-icon.facebook i {
    color: #1877F2;
}

.social-icon.youtube i {
    color: #FF0000;
}

.footer-links-horizontal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links-horizontal li {
    display: flex;
    align-items: center;
}

.footer-links-horizontal li:not(:last-child)::after {
    content: '|';
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-links-horizontal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links-horizontal a:hover {
    color: white;
}

/* Breadcrumb Section */
.site-breadcrumb {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.policy-content {
    color: #444;
    line-height: 1.8;
}

.policy-content p,
.policy-content li {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-content h2,
.policy-content h3,
.policy-content h4 {
    color: #222;
    font-weight: 700;
}

.policy-content strong {
    color: #333;
}

.policy-content a {
    color: #ff7400;
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.site-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(11, 15, 47, 0.8), rgba(255, 116, 0, 0.4));
}

.site-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #ff7400;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    padding: 0 10px;
}

.opacity-75 {
    opacity: 0.75;
}

@media (min-width: 1200px) {

    .h3,
    h3 {
        font-size: 1.3rem;
    }
}

.btn-buy-now1 {
    display: inline-block;
    background: #008000;
    color: white;
    padding: 8px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(11, 15, 47, 0.2);
    border: 2px solid #008000;
}

.btn-buy-now1:hover {
    background: white;
    color: #0B0F2F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 15, 47, 0.15);
}

.btn-details1 {
    display: inline-block;
    background: #f57c00;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    border: 2px solid #f57c00;
    text-transform: uppercase;
}

.btn-details1:hover {
    background: white;
    color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

.btn-details2 {
    display: inline-block;
    background: #0288d1;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    border: 2px solid #0288d1;
    text-transform: uppercase;
}

.btn-details2:hover {
    background: white;
    color: #0288d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

.btn-details3 {
    display: inline-block;
    background: #7b1fa2;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    border: 2px solid #7b1fa2;
    text-transform: uppercase;
}

.btn-details3:hover {
    background: white;
    color: #7b1fa2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

.btn-details4 {
    display: inline-block;
    background: #01579b;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    border: 2px solid #01579b;
    text-transform: uppercase;
}

.btn-details4:hover {
    background: white;
    color: #01579b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

/* Package Navigation Buttons */
.btn-package-nav {
    background: var(--accent);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    margin: 5px;
}

.btn-package-nav:hover {
    background: #ffffff;
    color: var(--accent);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 116, 0, 0.2);
}

.btn-package-nav.active {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: none;
    pointer-events: none;
    cursor: default;
    backdrop-filter: blur(5px);
}

.btn-package-name {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--accent);
    display: inline-block;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-package-name:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 116, 0, 0.15);
    background: white;
    color: var(--accent);
}

.small,
small {
    font-size: .475em;
}