body {
   background: var(--bg-surface);
}

.breadcrumb {
   background: var(--bg-body);
   padding: 30px clamp(1.5rem, 5vw, 3rem);
}

.breadcrumb ol {
   list-style: none;
   max-width: 1200px;
   margin: auto;
   padding: 0;
   display: flex;
   gap: 0.5rem;
   overflow-x: auto;
   white-space: nowrap;
}

.breadcrumb li::after {
   content: ">";
   margin-left: 0.5rem;
   color: var(--text-muted);
}

.breadcrumb li:last-child::after {
   content: "";
}

.breadcrumb li a {
   color: var(--link-default);
}




.header {
   position: relative;
   background: linear-gradient(#0009, #0009), url('../../assets/img/e-commerce banner.jpg') no-repeat center / cover;
   margin-top: 97px;
   padding: 150px clamp(1.5rem, 5vw, 3rem);
   text-align: center;
}

.header .container {
   max-width: 1200px;
   margin: auto;
}

.header h1 {
   color: var(--text-light);
   margin-bottom: 0.5rem;
}

.header p {
   color: var(--text-light);
   font-size: var(--h5-size);
}

.social-links {
   position: absolute;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   align-items: center;
   gap: 20px;
}

.social-links a {
   color: var(--text-light);
}






.intro {
   background: var(--bg-body);
   padding: 60px clamp(1.5rem, 5vw, 3rem);
   padding-top: 20px;
   margin: 0;
}

.intro .container {
   max-width: 1200px;
   margin: auto;
}

.intro h2 {
   margin-bottom: 1.5rem;
}

.intro h2 span {
   color: var(--accent);
}

.intro p {
   color: var(--text-body);
   font-size: var(--h6-size);
}




.services h2,
.why-us h2,
.cta h2 {
   color: var(--text-secondary);
   margin-bottom: 1.5rem;
}


.services {
   padding: 100px clamp(1.5rem, 5vw, 3rem);
}

.services .container {
   max-width: 1200px;
   margin: auto;
}

.cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.card {
   font-size: var(--p-size);
   background-color: var(--bg-body);
   padding: 2rem;
   border-radius: var(--radius-md);
   color: var(--text-body);
   box-shadow: var(--shadow-elevation);
   border: 1px solid var(--border-default);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   overflow: hidden;
   border-left: 4px solid var(--accent);
}

.card:hover {
   transform: scale(1.05);
   box-shadow: var(--shadow-elevation);
}

.card h3 {
   font-size: 1.2em;
   color: var(--text-secondary);
   margin-bottom: 1rem;
}

.card h3 i {
   color: var(--accent);
   margin-right: 10px;
}

.card p {
   font-size: 1em;
   color: var(--text-muted);
}



.card__features li {
   margin-bottom: 1rem;
}

.card__features li::before {
   content: "✓";
   color: var(--accent);
   margin-right: 0.5em;
}

.highlight {
   background: var(--bg-surface);
   border-left: 4px solid var(--accent);
   padding: 10px 20px;
   font-size: 0.8em;
   font-weight: 500;
   border-radius: var(--radius-sm);
}






.packages {
   background: var(--bg-body);
   padding: 80px clamp(1.5rem, 5vw, 3rem);
}

.packages .container {
   max-width: 1200px;
   margin: auto;
}

.packages h2 {
   margin-bottom: 1.5rem;
}

.package-cards {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 30px;
}

.package-cards .card {
   font-size: var(--p-size);
   background: var(--bg-body);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-lg);
   padding: 40px 30px;
   transition: transform 0.3s;
}

.package-cards .card:hover {
   transform: scale(1.02);
   box-shadow: var(--shadow-elevation);
}

.package-cards .card h3 {
   color: var(--accent);
   font-size: 1.3em;
   margin-bottom: 10px;
}

.package-cards .card p {
   margin-bottom: 10px;
}

.package-cards .price {
   color: var(--text-secondary);
   font-weight: 600;
   font-size: 1.5em;
   margin-bottom: 10px;
}

.package-cards .card ul {}

.package-cards .card ul li {
   margin-bottom: 10px;
}

.package-cards .card ul li::before {
   content: "✓";
   color: var(--accent);
   margin-right: 0.5em;
}

@media (max-width: 1000px) {
   .package .container {
      flex-direction: column;
   }
}

@media (max-width: 768px) {
   .package-cards {
      flex-direction: column;
      align-items: center;
   }
   
   .package-cards .card {
      width: 100%;
   }
}







.add-ons {
   background: var(--bg-body);
   padding: 80px clamp(1.5rem, 5vw, 3rem);
}

.add-ons .container {
   max-width: 1200px;
   margin: auto;
   overflow: hidden;
}

.add-ons h2 {
   margin-bottom: 1.5rem;
}

.add-ons .table-wrapper {
   overflow-x: scroll;
}

.add-ons-table {
   width: 100%;
   border-collapse: collapse;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-md);
   background: var(--bg-body);
}

.add-ons-table th,
.add-ons-table td {
   padding: 1rem 1.5rem;
   border: 1px solid var(--border-default);
   text-align: left;
   text-wrap: nowrap;
}

.add-ons-table th {
   background: var(--bg-alt);
   color: var(--text-body);
}




.support-card {
   background: var(--bg-body);
   padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.support-card__card {
   background: var(--bg-surface);
   font-size: var(--p-size);
   max-width: 500px;
   border: 1px solid var(--border-default);
   border-radius: var(--radius-lg);
   padding: 30px;
   box-shadow: var(--shadow-md);
   margin: auto;
}

.support-card__card h3 {
   margin-top: 0;
   color: var(--text-heading);
   font-size: 1.4em;
}

.support-card__card p {
   margin: 12px 0;
   color: var(--text-body);
}

.support-card__card ul {
   padding-left: 20px;
   color: var(--text-muted);
}

.support-card__card ul li {
   margin-bottom: 6px;
}

.support-card__card .note {
   background: var(--bg-body);
   padding: 12px;
   border-left: 4px solid var(--accent);
   border-radius: var(--radius-md);
   color: var(--text-muted);
   margin-top: 16px;
}

.support-card__card a {
   color: var(--link-default);
   font-weight: 500;
}

.support-card__card a:hover {
   text-decoration: underline;
}




.why-us {
   background: var(--bg-body);
   padding: 100px clamp(1.5rem, 5vw, 3rem);
}

.why-us .container {
   max-width: 1200px;
   margin: auto;
}

.why-us li {
   margin-bottom: 1rem;
   color: var(--text-body);
}




.cta-section {
   background: var(--btn-pri-bg);
   text-align: center;
   padding: 60px clamp(1.5rem, 5vw, 3rem);
}

.cta-section .container {
   max-width: 1200px;
   margin: auto;
}

.cta-section h2 {
   color: var(--text-light);
   margin-bottom: 20px;
}

.cta-section p {
   margin-bottom: 20px;
   color: var(--text-light);
}

.cta-section .btn {
   display: inline-block;
   margin: 0.5rem;
}






.pricing-section {
   background: var(--bg-surface);
   padding: 60px clamp(1.5rem, 5vw, 3rem);
   scroll-margin-top: 97px;
}

.pricing-section h2 {
   text-align: center;
   margin-bottom: 40px;
}

.card-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   margin-bottom: 40px;
}

.pricing-card {
   font-size: var(--p-size);
   background: var(--bg-body);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-md);
   padding: 25px;
   max-width: 400px;
   width: 100%;
   transition: transform 0.2s ease;
   position: relative;
}

.pricing-card:hover {
   transform: scale(1.05);
   box-shadow: var(--shadow-elevation);
}

.pricing-card .badge {
   position: absolute;
   top: -10px;
   right: -10px;
   background-color: #ff9800;
   color: var(--text-light);
   padding: 5px 10px;
   font-size: 0.75em;
   border-radius: 5px;
}

.pricing-card h3 {
   margin-top: 0;
   color: var(--text-secondary);
   font-size: 1.2em;
}

.price {
   font-weight: bold;
   font-size: 1.4em;
   color: var(--accent);
   margin-bottom: 10px;
}

.description {
   font-size: 0.95em;
   margin-bottom: 15px;
   color: var(--text-muted);
}

.features {
   list-style: none;
   padding: 0;
   font-size: 0.9em;
}

.features li {
   margin-bottom: 1.5rem;
   padding-left: 1.5em;
   position: relative;
}

.features li::before {
   content: "✔";
   color: var(--accent);
   position: absolute;
   left: 0;
}