/* NFC Card Page Specific Styles */

/* General Styles */
.nfc-page {
    --card-bg: white;
    --card-highlight:#14919B;
    --card-accent: #14919B;
    --card-text: #333;
    --card-text-light: #666;
    --card-shadow: rgba(59, 81, 209, 0.2);
    --card-gradient-1: #14919B;
    --card-gradient-2: #14919B;
    --card-gradient-3: #e7a8bc;
    overflow-x: hidden;
  }
  
  .btn-light {
    background-color: white;
    color: var(--card-highlight);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .btn-light:hover {
    background-color: #f8f8f8;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
  
  /* Pulse Button Animation */
  .pulse-button {
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  
  /* NFC Hero Section */
  .nfc-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f9f9fd 0%, #f0f2ff 100%);
    overflow: hidden;
  }
  
  .nfc-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .nfc-hero-text {
    flex: 1;
    max-width: 600px;
  }
  
  .nfc-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
  }
  
  .nfc-title span {
    display: block;
    color: var(--card-highlight);
    font-size: 42px;
  }
  
  .nfc-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  
  .nfc-cta {
    display: flex;
    gap: 15px;
  }
  
  .nfc-hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
  }
  
  /* Decorative shapes */
  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }
  
  .hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--card-gradient-1);
    top: -150px;
    right: -100px;
  }
  
  .hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--card-gradient-2);
    bottom: -50px;
    left: -50px;
  }
  
  .hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--card-gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Business Card Styles */
  .card-container {
    position: relative;
    width: 650px;
    height: 500px;
    perspective: 1000px;
    margin: 0 auto;
  }
  
  .business-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out, box-shadow 0.3s ease;
    cursor: pointer;
    transform: translateZ(0) rotateY(0deg);
    box-shadow: 0 15px 35px var(--card-shadow);
    border-radius: 10px;
  }
  
  .business-card.flipped {
    transform: translateZ(0) rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  
  .card-front {
    background: var(--card-bg);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "logo . qr"
      "profile profile profile"
      ". nfc .";
  }
  
  .card-back {
    background: linear-gradient(135deg, var(--card-gradient-1), var(--card-gradient-2));
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-logo {
    grid-area: logo;
  }
  
  .card-logo img {
    height: 25px;
  }
  
  .card-profile {
    grid-area: profile;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 2px solid var(--card-highlight);
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-name {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    color: var(--card-text);
  }
  
  .profile-title {
    font-size: 14px;
    color: var(--card-text-light);
    margin: 0;
  }
  
  .card-qr {
    grid-area: qr;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .qr-code {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }
  
  .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .scan-text {
    font-size: 10px;
    color: var(--card-text-light);
    margin: 0;
  }
  
  .card-nfc-indicator {
    grid-area: nfc;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nfc-waves {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nfc-waves span {
    position: absolute;
    border: 2px solid var(--card-highlight);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    transform: scale(0.5);
  }
  
  /* Back of card */
  .card-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  
  .contact-item i {
    width: 20px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .card-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
  }
  
  .card-social .social-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .card-social .social-icon:hover {
    background: white;
    color: var(--card-highlight);
    transform: translateY(-3px);
  }
  
  .card-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .card-powered img {
    height: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
  }
  
  .card-shadow {
    position: absolute;
    width: 90%;
    height: 20px;
    bottom: -30px;
    left: 5%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    filter: blur(10px);
    z-index: -1;
    transition: all 0.8s ease-in-out;
  }
  
  .business-card.flipped ~ .card-shadow {
    opacity: 0.7;
    transform: scale(0.9);
  }
  
  .tap-instruction {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--card-text-light);
    font-size: 14px;
    opacity: 0.7;
  }
  
  /* Particle effects */
  .particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  /* NFC Features Section */
  .nfc-features {
    padding: 100px 0;
    position: relative;
    background-color: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--card-gradient-1), var(--card-gradient-2));
    z-index: -1;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
  }
  
  .feature-icon {
    font-size: 36px;
    color: var(--card-highlight);
    margin-bottom: 20px;
  }
  
  .feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .feature-desc {
    color: var(--card-text-light);
    line-height: 1.6;
  }
  
  .feature-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 81, 209, 0.1), rgba(150, 91, 193, 0.1));
    border-radius: 50%;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9fd 0%, #f0f2ff 100%);
    position: relative;
  }
  
  .steps-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
  }
  
  .step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--card-gradient-1), var(--card-gradient-2));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .step-desc {
    color: var(--card-text-light);
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--card-highlight);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
  }
  
  .steps-connector {
    position: absolute;
    width: 2px;
    height: calc(100% - 200px);
    background: linear-gradient(to bottom, var(--card-gradient-1), var(--card-gradient-2));
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.2;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card.featured {
    background: linear-gradient(135deg, #f9f9ff, #f0f2ff);
    border: 1px solid rgba(59, 81, 209, 0.1);
    transform: scale(1.05);
    z-index: 2;
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  .pricing-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, var(--card-gradient-1), var(--card-gradient-2));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  
  .pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
  }
  
  .pricing-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--card-highlight);
    line-height: 1;
  }
  
  .currency {
    font-size: 24px;
    vertical-align: super;
  }
  
  .period {
    font-size: 16px;
    color: var(--card-text-light);
    font-weight: 400;
  }
  
  .pricing-features {
    margin-bottom: 30px;
  }
  
  .pricing-features ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-features li i {
    color: var(--card-highlight);
    font-size: 14px;
  }
  
  .pricing-features li.disabled {
    color: #ccc;
  }
  
  .pricing-features li.disabled i {
    color: #ccc;
  }
  
  .pricing-footer {
    text-align: center;
  }
  
  .pricing-shape-1,
  .pricing-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  
  .pricing-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 81, 209, 0.05), rgba(150, 91, 193, 0.05));
    top: -200px;
    left: -200px;
  }
  
  .pricing-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(150, 91, 193, 0.05), rgba(231, 168, 188, 0.05));
    bottom: -150px;
    right: -150px;
  }
  
  /* Testimonials */
  .nfc-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9fd 0%, #f0f2ff 100%);
  }
  
  .testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
  }
  
  .testimonial-slide {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
  }
  
  .testimonial-quote {
    font-size: 40px;
    color: var(--card-highlight);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  
  .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--card-text);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .author-position {
    font-size: 14px;
    color: var(--card-text-light);
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--card-highlight);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    background: var(--card-highlight);
    color: white;
  }
  
  .testimonial-dots {
    display: flex;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: var(--card-highlight);
    transform: scale(1.2);
  }
  
  /* Call to Action */
  .nfc-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--card-gradient-1), var(--card-gradient-2));
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .cta-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  /* Animated Title */
  .animated-title {
    position: relative;
  }
  
  .animated-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--card-gradient-1), var(--card-gradient-2));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .nfc-hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .nfc-cta {
      justify-content: center;
    }
  
    .nfc-title {
      font-size: 40px;
    }
  
    .nfc-title span {
      font-size: 32px;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .step {
      flex-direction: column;
      text-align: center;
    }
  
    .step-icon {
      display: none;
    }
  
    .steps-connector {
      display: none;
    }
  
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-card {
      width: 100%;
      max-width: 400px;
    }
  
    .pricing-card.featured {
      transform: scale(1);
      order: -1;
    }
  
    .pricing-card.featured:hover {
      transform: translateY(-10px);
    }
  }
  
  @media (max-width: 768px) {
    .nfc-hero {
      padding: 80px 0 60px;
    }
  
    .nfc-title {
      font-size: 32px;
    }
  
    .nfc-title span {
      font-size: 26px;
    }
  
    .nfc-subtitle {
      font-size: 16px;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .testimonial-slide {
      padding: 30px;
    }
  
    .testimonial-text {
      font-size: 16px;
    }
  }
  
  /* Animation classes for GSAP */
  .fade-up {
    opacity: 0;
    transform: translateY(50px);
  }
  
  .fade-in {
    opacity: 0;
  }
  
  .slide-right {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  .slide-left {
    opacity: 0;
    transform: translateX(100px);
  }
  
  .zoom-in {
    opacity: 0;
    transform: scale(0.9);
  }