/* ============================================================
   Product Inner Page — Revamp CSS
   Scoped to: .ta-products-revamp
   ============================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.ta-products-revamp {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

.ta-products-revamp *,
.ta-products-revamp *::before,
.ta-products-revamp *::after {
    box-sizing: border-box;
}

.ta-products-revamp img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ta-products-revamp a {
    text-decoration: none;
    color: inherit;
}

.ta-prod-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.ta-prod-badge {
    display: inline-block;
    background: #f6e6db;
    color: #f97316;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.ta-prod-btn-primary {
    display: inline-block;
    background: #f97316;
    color: #fff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
    transition: all .25s ease;
    text-decoration: none;
    text-align: center;
}

.ta-prod-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.45);
}

.ta-prod-btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #0f172a !important;
    transition: .2s;
    text-decoration: none;
    text-align: center;
}

.ta-prod-btn-secondary:hover {
    background: #f1f5f9;
}

/* ===== HERO ===== */
.ta-prod-hero {
    position: relative;
    padding: 140px 8%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, rgba(0,0,0,0.04), transparent 60%),
                linear-gradient(#e9e9e9 1px, transparent 1px),
                linear-gradient(90deg, #e9e9e9 1px, transparent 1px);
    background-size: auto, 50px 50px, 50px 50px;
    background-color: #f7f6f5;
    overflow: hidden;
}

.ta-prod-hero .wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f97316;
    transition: 0.5s;
    z-index: 0;
}

.ta-prod-hero .wave span {
    position: absolute;
    width: 325vh;
    height: 325vh;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.ta-prod-hero .wave span:nth-child(1) {
    border-radius: 45%;
    background: rgb(255, 255, 255);
    animation: animate 5s linear infinite;
}

.ta-prod-hero .wave span:nth-child(2) {
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 10s linear infinite;
}

.ta-prod-hero .wave span:nth-child(3) {
    border-radius: 42.5%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 15s linear infinite;
}

@keyframes animate {
    0%   { transform: translate(-50%, -75%) rotate(0deg); }
    100% { transform: translate(-50%, -75%) rotate(360deg); }
}

.ta-prod-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 120px;
}

.ta-prod-hero-left {
    max-width: 560px;
}

.ta-prod-hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.ta-prod-hero-title .ta-ind-highlight {
    color: #f97316;
}

.ta-prod-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 36px;
}

.ta-prod-hero-buttons {
    display: flex;
    gap: 16px;
}

.ta-prod-hero-right {
    position: relative;
}

.ta-prod-dashboard-frame {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%   { transform: translateY(0px) }
    50%  { transform: translateY(-12px) }
    100% { transform: translateY(0px) }
}

.ta-prod-dashboard-frame::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: #17163c;
    border-radius: 24px;
    z-index: -1;
    transform: rotate(-2deg);
}

.ta-prod-dashboard-frame img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* ===== ABOUT ===== */
.ta-prod-about {
    padding: 140px 20px;
    background: #ffffff;
}

.ta-prod-about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.ta-prod-about-left {
    flex: 1;
}

.ta-prod-about-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
    color: #0f172a;
}

.ta-prod-about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 22px;
}

.ta-prod-about-image {
    flex: 1;
    height: 400px;
    width: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* ===== FEATURES ===== */
.ta-prod-features {
    padding: 140px 20px;
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.ta-prod-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.ta-prod-features > * {
    position: relative;
    z-index: 1;
}

.ta-prod-features-container {
    max-width: 1200px;
    margin: auto;
}

.ta-prod-features-header {
    text-align: center;
    margin-bottom: 70px;
}

.ta-prod-features-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.ta-prod-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ta-prod-feature-card {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.ta-prod-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(249, 115, 22, .08), transparent);
    opacity: 0;
    transition: .35s;
}

.ta-prod-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.ta-prod-feature-card:hover::before {
    opacity: 1;
}

.ta-prod-feature-icon {
    width: 62px;
    height: 62px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.ta-prod-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ta-prod-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ta-prod-feature-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* ===== MAIN CONTENT ==== */
.ta-prod-content {
	padding: 80px 20px;
}

.ta-prod-content .ta-prod-container {
    max-width: 900px;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* ===== PARALLAX CONTACT ===== */
.ta-prod-parallax-contact {
    position: relative;
    padding: 120px 0;
    background-image:
        linear-gradient(120deg, rgba(10, 15, 30, 0.9), rgba(10, 15, 30, 0.8)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ta-prod-contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #ffffff;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.ta-prod-contact-info .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.ta-prod-contact-info h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.ta-prod-contact-info h2 span {
    color: #ef9920;
}

.ta-prod-contact-info p {
    max-width: 420px;
    opacity: 0.85;
    margin-bottom: 30px;
    font-size: 18px;
}

.ta-prod-contact-form {
    background: #ffffff;
    color: #111111;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.ta-prod-contact-form h3 {
    margin-bottom: 6px;
    font-size: 24px;
}

.ta-prod-contact-form .form-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

.ta-prod-contact-form form p {
    margin-bottom: 12px;
}

.ta-prod-contact-form form .form-row {
    display: flex;
    gap: 14px;
}

.ta-prod-contact-form form .form-row p {
    flex: 1;
}

.ta-prod-contact-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 4px;
}

/* Form Styles overriding standard CF7 or custom */
.ta-prod-contact-form input,
.ta-prod-contact-form select,
.ta-prod-contact-form textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    font-size: 14px !important;
    margin-bottom: 14px !important;
    background: #fff !important;
    color: #111 !important;
}

.ta-prod-contact-form textarea {
    height: 120px;
    resize: none;
}

.ta-prod-contact-form button[type="submit"],
.ta-prod-contact-form input[type="submit"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef9920, #f97316);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ta-prod-contact-form button[type="submit"]:hover,
.ta-prod-contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 122, 89, 0.4);
}

.ta-prod-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.ta-prod-contact-glass-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.ta-prod-contact-glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 89, 0.5);
}

.ta-prod-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.74);
    color: #ef9920;
}

.ta-prod-card-text span {
    font-size: 13px;
    opacity: 0.75;
    display: block;
}

.ta-prod-card-text strong {
    display: block;
    font-size: 15px;
    margin-top: 2px;
}

/* ===== FAQ ===== */
.ta-prod-faq {
    padding: 140px 20px;
    background: #f7f6f5;
    text-align: center;
}

.ta-prod-faq-container {
    max-width: 900px;
    margin: auto;
}

.ta-prod-faq-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 60px;
}

.ta-prod-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ta-prod-faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.ta-prod-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #0f172a;
}

.ta-prod-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    text-align: left;
    padding: 0 24px;
}

.ta-prod-faq-answer p {
    padding-bottom: 24px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}


/* ===== VIDEO SECTION ===== */
.ta-prod-video {
  padding: 140px 0;
  background: #ffffff;
}

.ta-prod-video-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

.ta-prod-video-box {
  background: #cfc6bd;
  height: 420px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1200');
  background-size: cover;
  background-position: center;
}

.ta-prod-video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.ta-prod-play-button {
  width: 86px;
  height: 86px;
  background: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 40px rgba(255, 106, 0, .35);
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.ta-prod-play-button:hover {
    transform: scale(1.1);
}

.ta-prod-video-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 16px;
  color: #0f172a;
}

.ta-prod-video-text {
  margin: 28px 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 500px;
}

/* ===== WHY SECTION ===== */
.ta-prod-why {
  padding: 140px 20px;
  background: #ffffff;
}

.ta-prod-why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.ta-prod-why-badge {
  display: inline-block;
  background: #f5e7dc;
  color: #f97316;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.ta-prod-why-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #0f172a;
}

.ta-prod-why-text {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 520px;
}

.ta-prod-why-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ta-prod-why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f5f7;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  transition: transform 0.3s ease;
}

.ta-prod-why-item:hover {
    transform: translateX(10px);
    background: #fdf2f8;
}

.ta-prod-check {
  width: 32px;
  height: 32px;
  background: #f5e7dc;
  color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== INDUSTRIES SECTION ===== */
.ta-prod-industries {
  padding: 140px 20px;
  background: #f7f6f5;
  text-align: center;
}

.ta-prod-industries-container {
  max-width: 1200px;
  margin: auto;
}

.ta-prod-industries-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 70px;
}

.ta-prod-carousel {
  max-width: 900px;
  margin: auto;
}

.ta-prod-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ta-prod-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  width: 160px;
  border: 1px solid #eee;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all .3s ease;
}

.ta-prod-menu-item:hover {
  background: #fff7f2;
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.ta-prod-menu-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}

.ta-prod-menu-item span {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ===== CASE SECTION ===== */
.ta-prod-case {
  padding: 140px 20px;
  text-align: center;
  background: #fff;
}

.ta-prod-case-container {
  max-width: 1200px;
  margin: auto;
}

.ta-prod-case-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 70px;
}

.ta-prod-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ta-prod-case-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: .35s;
  text-align: left;
}

.ta-prod-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.ta-prod-case-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.ta-prod-case-content {
  padding: 26px;
}

.ta-prod-case-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ta-prod-case-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ta-prod-video-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ta-prod-video-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ta-prod-why-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .ta-prod-why-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ta-prod-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ta-prod-case-grid {
        grid-template-columns: 1fr;
    }
    .ta-prod-menu {
        gap: 15px;
    }
    .ta-prod-menu-item {
        width: 140px;
    }
}
