/* Modern Concept Page Styles for A+ Studios */
:root {
  --accent: #22d3ee;
  --accent-dark: #0891b2;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: #0a0a0a;
}

#main-content { overflow: visible; }

/* Tool Cards Grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.tool-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 20px -5px rgba(34, 211, 238, 0.1);
}

.tool-card-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 25px;
}

.tool-card-image {
  width: calc(100% + 80px);
  margin: -40px -40px 30px -40px;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.tool-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card:hover .tool-card-image img {
  transform: scale(1.1);
}

.tool-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.tool-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tool-card .link-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.tool-card .link-text:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.tool-features li {
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-features li i {
  color: var(--accent);
  font-size: 10px;
}

/* Feature Grid (Why A+ Studios) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.feature-item {
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.2);
}

.feature-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

/* Video Section Adjustments */
.video-container {
  max-width: 900px;
  margin: 100px auto 0;
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(0,0,0,0) 100%);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

/* Pulsing Button Override */
.button-border a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 50px !important;
  height: 64px !important;
  min-height: 64px !important;
  width: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: center;
}

.button-border {
  height: auto !important;
  width: auto !important;
  display: inline-block !important;
}

.button-box .clapat-button {
  position: relative;
}

.button-box .clapat-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  border: 2px solid var(--accent);
  animation: pulse-glow 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% { width: 90%; height: 80%; opacity: 0.5; }
  100% { width: 130%; height: 150%; opacity: 0; }
}

@media (max-width: 768px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }
}
/* Modern Premium Pricing Styles for A+ Studios */
:root {
  --accent: #22d3ee;
  --accent-dark: #0891b2;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: #0a0a0a;
}

#main-content { overflow: visible; }


.pricing-tabs {
  display: inline-flex;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  margin-bottom: 80px;
}

.pricing-tab {
  background: transparent;
  border: none;
  color: #71717a;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
}

.pricing-tab.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 10px 25px -5px rgba(34, 211, 238, 0.4);
}

.pricing-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.pricing-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(34, 211, 238, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 20px -5px rgba(34, 211, 238, 0.2);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08) 0%, rgba(0, 0, 0, 0) 100%), var(--card-bg);
  border-color: rgba(34, 211, 238, 0.4);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured::after {
  content: 'Bestseller';
  position: absolute;
  top: 24px;
  right: -32px;
  background: var(--accent);
  color: #000;
  padding: 8px 40px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-card-inner {
  padding: 48px 40px;
  flex: 1;
}

.pricing-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pricing-desc {
  color: #9494b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-price-block {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pricing-features-list li {
  font-size: 13px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}

.pricing-card-bottom {
  padding: 40px;
  padding-top: 0;
}

.pricing-btn {
  height: 60px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Global CTA Overrides for perfect centering */
.button-border a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 50px !important;
  height: 64px !important;
  min-height: 64px !important;
  width: auto !important;
  line-height: 1 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: center;
}

.button-border {
  height: auto !important;
  width: auto !important;
  display: inline-block !important;
}

/* Pulsing Pulse Animation for CTA */
.button-box .clapat-button {
  position: relative;
}

.button-box .clapat-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  border: 2px solid var(--accent);
  animation: pulse-glow 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% { width: 90%; height: 80%; opacity: 0.5; }
  100% { width: 130%; height: 150%; opacity: 0; }
}

.pricing-btn:hover {
  background: #fff;
  color: #000;
}

.featured .pricing-btn {
  background: var(--accent);
  color: #000;
  border: none;
}

/* Additional Services Dashboard */
.additional-services {
  margin-top: 120px;
  background: transparent;
  padding: 80px 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.additional-header h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-5px);
}

.service-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-name i {
  color: var(--accent);
  font-size: 20px;
}

.service-price {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-note {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
}

/* ============================================================================
 * PRICING PAGE POPUP CSS
 * Purpose: Styles for the pricing popup overlay, form, and submit button
 * Location: Originally in pricing.html inline style tag
 * ============================================================================ */

.pricing-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-popup-overlay.hidden {
  display: none;
}

.pricing-popup-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.pricing-popup-header h3 {
  color: #fff;
  margin: 0;
  font-size: 24px;
}

.pricing-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.pricing-popup-close:hover {
  color: #22d3ee;
}

.pricing-popup-subtitle {
  color: #aaa;
  margin-bottom: 20px;
}

.pricing-form-group {
  margin-bottom: 15px;
}

.pricing-form-group label {
  display: block;
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
}

.pricing-form-group input,
.pricing-form-group textarea {
  width: 100%;
  padding: 10px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

.pricing-form-group input:focus,
.pricing-form-group textarea:focus {
  outline: none;
  border-color: #22d3ee;
}

.pricing-submit-btn {
  width: 100%;
  padding: 12px;
  background: #22d3ee;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.pricing-submit-btn:hover {
  background: #1eb4c4;
}

/* Responsive Pricing Popup for Mobile Devices */
@media (max-width: 768px) {
  .pricing-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-popup-content {
    width: 95%;
    max-width: 95%;
    padding: 20px 15px;
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
    background: #1a1a1a;
  }

  .pricing-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10;
  }

  .pricing-popup-header h3 {
    font-size: 16px;
    margin: 0;
    padding-right: 10px;
  }

  .pricing-popup-close {
    background: #22d3ee;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .pricing-popup-close:hover {
    background: #1eb4c4;
  }

  .pricing-popup-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .pricing-form-group {
    margin-bottom: 12px;
  }

  .pricing-form-group label {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .pricing-form-group input,
  .pricing-form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .pricing-submit-btn {
    padding: 12px;
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .pricing-popup-overlay {
    padding: 10px 5px;
  }

  .pricing-popup-content {
    width: 98%;
    max-width: 98%;
    padding: 15px 10px;
    margin: 0 auto;
    max-height: calc(100vh - 20px);
  }

  .pricing-popup-header h3 {
    font-size: 14px;
  }

  .pricing-popup-close {
    font-size: 20px;
    padding: 6px 10px;
    min-width: 40px;
    min-height: 40px;
  }

  .pricing-popup-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .pricing-form-group label {
    font-size: 12px;
  }

  .pricing-form-group input,
  .pricing-form-group textarea {
    padding: 8px;
    font-size: 13px;
  }

  .pricing-submit-btn {
    padding: 14px;
    font-size: 13px;
  }
}

/* Service Placeholder Styling for Gallery */
.service-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.service-placeholder:hover {
  background: linear-gradient(135deg, #22d3ee 0%, #1eb4c4 100%);
  transform: translateY(-5px);
}

.service-placeholder i {
  margin-bottom: 15px;
  color: #22d3ee;
  transition: color 0.3s ease;
}

.service-placeholder:hover i {
  color: #000;
}

.service-placeholder span {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
