/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(
    to bottom,
    #3a3a3a 0%,
    #1a1a1a 50%,
    #000000 100%
    );    
    cursor: none;
}

/* Page Container */
.page-container {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin-top: 5rem;
}
/* Cursor  */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background:#2e2e2e;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.6s ease forwards;
  animation-delay: 0.5s;
}

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

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.7s;
}

.navbar-logo .logo-box {
  width: 45px;
  height: 45px;
  font-size: 12px;
  margin: 0;

}
.img-small{
    width: 35px;
    height: 35px;
    margin: 5px 5px;
}
.logo-box{
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 25%;
    margin-right: 100px;
}
.logo-text {
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
}

.navbar-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.nav-link:nth-child(1) { animation-delay: 0.8s; }
.nav-link:nth-child(2) { animation-delay: 0.9s; }
.nav-link:nth-child(3) { animation-delay: 1.0s; }
.nav-link:nth-child(4) { animation-delay: 1.1s; }

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 1.2s;
}

.btn-primary-small,
.btn-secondary-small {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary-small {
  background: #ffffff;
  color: #000000;
}

.btn-primary-small:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.btn-secondary-small {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary-small:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Grid Background */
.grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: 
        linear-gradient(to right, #404040 1px, transparent 1px),
        linear-gradient(to bottom, #404040 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(38, 38, 38, 0.1), transparent, rgba(64, 64, 64, 0.1));
    z-index: 2;
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    padding: 48px 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 48px;
    text-align: center;
}

.header h1 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Abril Fatface', serif;
    letter-spacing: 3px;
}

.subtitle {
    color: #a3a3a3;
    font-size: 1rem;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card Styles */
.card {
    background-color: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 32px;
}

/* Plan Card */
.plan-card {
    height: fit-content;
}

.plan-header {
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(64, 64, 64, 0.4);
    color: #d4d4d4;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.plan-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.plan-description {
    color: #a3a3a3;
    font-size: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.price {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
}

.billing-period {
    color: #737373;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    border-top: 1px solid #262626;
    padding-top: 24px;
}

.features-section h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.check-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(64, 64, 64, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-mark {
    width: 12px;
    height: 12px;
    color: #d4d4d4;
}

.feature-text {
    color: #d4d4d4;
    font-size: 1rem;
}

/* Note Box */
.note-box {
    margin-top: 32px;
    padding: 16px;
    background-color: rgba(38, 38, 38, 0.6);
    border-radius: 8px;
    border: 1px solid #404040;
}

.note-box p {
    color: #a3a3a3;
    font-size: 0.875rem;
}

.note-box strong {
    color: #ffffff;
}

/* Order Summary Card */
.order-summary-card h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #d4d4d4;
    font-size: 1rem;
}

.discount-row {
    color: #4ade80;
}

.discount-amount {
    color: #4ade80;
}

.total-row {
    border-top: 1px solid #404040;
    padding-top: 16px;
}

.total-row > span {
    color: #ffffff;
}

.total-amount {
    text-align: right;
}

.total-price {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
}

.total-billing {
    color: #737373;
    font-size: 0.875rem;
}

/* Coupon Section */
.coupon-section {
    margin-top: 24px;
    border-top: 1px solid #404040;
    padding-top: 24px;
}

.coupon-toggle {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid #404040;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #ffffff;
}

.coupon-toggle:hover {
    background-color: rgba(38, 38, 38, 0.5);
}

.coupon-toggle-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    color: #a3a3a3;
}

.chevron {
    transition: transform 0.2s;
}

/* Coupon Input Section */
.coupon-input-section {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.coupon-header h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    background-color: #262626;
    border: 1px solid #404040;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.coupon-input::placeholder {
    color: #737373;
}

.coupon-input:focus {
    border-color: #525252;
    box-shadow: 0 0 0 2px rgba(82, 82, 82, 0.3);
}

.btn-apply {
    padding: 12px 24px;
    background-color: #404040;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-apply:hover {
    background-color: #525252;
}

.error-message {
    margin-top: 8px;
    color: #f87171;
    font-size: 0.875rem;
}

.hint-text {
    margin-top: 12px;
    color: #737373;
    font-size: 0.875rem;
}

.btn-cancel {
    margin-top: 12px;
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.btn-cancel:hover {
    color: #ffffff;
}

/* Applied Coupon */
.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: rgba(20, 83, 45, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

.applied-coupon-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: #4ade80;
}

.coupon-code {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.coupon-success {
    color: #4ade80;
    font-size: 0.875rem;
}

.btn-remove {
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.btn-remove:hover {
    color: #ffffff;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    background-color: #404040;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.btn-checkout:hover {
    background-color: #525252;
}

.terms-text {
    margin-top: 16px;
    text-align: center;
    color: #737373;
    font-size: 0.75rem;
}
/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #1f2937;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-box {
  width: 45px;
  height: 45px;
  font-size: 12px;
  margin: 0;
}

.footer-description {
  color: #6b7280;
  font-size: 14px;
}

.footer-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .card {
        padding: 24px;
    }

    .coupon-input-group {
        flex-direction: column;
    }

    .btn-apply {
        width: 100%;
    }
}
