
:root {
    --primary: #6C63FF;
    --primary-dark: #564ee6;
    --secondary: #FF6FA4;
    --dark: #0f172a;
    --gray: #475569;
    --light-gray: #E2E8F0;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --surface: #FFFFFF;
    --surface-muted: #F1F5F9;
    --border: rgba(15, 23, 42, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 0 24px rgba(108, 99, 255, 0.35);

    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    color: var(--white);
}

.text-white-dim {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(108, 99, 255, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.23);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
    border-radius: var(--radius-lg);
}

.btn-success {
    background: #48BB78;
    color: white;
}

.btn-success:hover {
    background: #38A169;
    transform: translateY(-2px);
}


/* Navbar */
.navbar {
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px;
    /* Standard height */
    width: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    /* Don't crop */
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--gray);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Section */
.video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 40px;
}

.video-container video {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 10% 0%, rgba(108, 99, 255, 0.12), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(255, 111, 164, 0.12), transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.6rem;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.floating-cards {
    position: relative;
    height: 500px;
    width: 100%;
}

.card {
    position: absolute;
    width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    border: 1px solid var(--border);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    top: 50px;
    left: 50px;
    z-index: 2;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 100px;
    right: 50px;
    z-index: 1;
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    width: 40px;
    height: 40px;
}

/* Features */
.bg-dark {
    background: var(--dark);
    color: var(--white);
}

.bg-dark .feature-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 14px;
}

.bg-dark .feature-list h4 {
    color: #e2e8f0;
}

.bg-dark .feature-list p {
    color: rgba(226, 232, 240, 0.75);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Increased gap */
}

.feature-list li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-list h4 {
    font-size: 1.5rem;
    /* Larger title */
    margin-bottom: 8px;
    color: var(--primary);
    /* Highlight color */
}

.feature-list p {
    font-size: 1.1rem;
    /* Larger text */
    color: rgba(255, 255, 255, 0.9);
}

.f-icon {
    width: 70px;
    /* Larger icon container */
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-icon i {
    width: 32px;
    height: 32px;
}

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 120px 0;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-delayed {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reviews Marquee */
.reviews-section {
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 60%, rgba(247, 250, 252, 0.9) 100%);
}

.reviews-section .container.center {
    margin-bottom: 30px !important;
}

.marquee-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 14px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding: 8px 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    background: white;
}

.review-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--primary);
}

.review-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.review-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-card img {
    width: 100%;
    display: block;
    image-rendering: auto;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
    }

    /* Move one-third (one complete set) */
}

/* Gradient Fade for Marquee edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-image {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-image {
        order: -1;
        /* Image first on mobile */
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    /* Section spacing */
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* Reviews Marquee */
    .review-card {
        min-width: 250px;
        max-width: 250px;
    }

    /* Navbar */
    .navbar {
        padding: 15px 0;
    }

    .nav-logo {
        height: 50px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 16px 28px;
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .features-container {
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


  /* Order Success Toast */
  .toast-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
  }

  .toast-backdrop.show {
      opacity: 1;
      pointer-events: auto;
  }

  .toast-card {
      background: var(--white);
      border-radius: 18px;
      padding: 22px 24px;
      min-width: 280px;
      max-width: 420px;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
      display: grid;
      gap: 10px;
      position: relative;
      transform: translateY(10px) scale(0.98);
      opacity: 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .toast-backdrop.show .toast-card {
      transform: translateY(0) scale(1);
      opacity: 1;
  }

  .toast-title {
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--dark);
  }

  .toast-desc {
      color: var(--gray);
      font-size: 0.95rem;
  }

  .toast-close {
      position: absolute;
      top: 10px;
      right: 10px;
      border: none;
      background: rgba(108, 99, 255, 0.1);
      color: var(--primary);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, background 0.2s ease;
  }

  .toast-close:hover {
      background: rgba(108, 99, 255, 0.2);
      transform: scale(1.05);
  }

  .toast-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(108, 99, 255, 0.12);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  /* FAQ Section */
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }


.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    line-height: 1.6;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 1000px;
    /* roomy height allow */
}
