/* ========================================
   Transfer Pricing Services - Custom Styles
   Orange-White Theme with CSS Art & Animations
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --tp-primary: #FF6B35;
    --tp-secondary: #E93C05;
    --tp-light: #FFF4F0;
    --tp-white: #FFFFFF;
    --tp-dark: #1A1A1A;
    --tp-gray: #6C757D;
    --tp-gradient-start: #FF8C61;
    --tp-gradient-end: #FF6B35;
}


/* ========================================
   Keyframe Animations (7 unique animations)
   ======================================== */

/* 1. Spiral - Rotating spiral motion */
@keyframes tp-spiral {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.7;
    }
}

/* 2. Wave - Sine wave motion */
@keyframes tp-wave {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(30px, 0) rotate(0deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* 3. Morph - Shape morphing with scale */
@keyframes tp-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.05);
    }
}

/* 4. Glide - Smooth horizontal glide */
@keyframes tp-glide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

/* 5. Swing - Pendulum swing */
@keyframes tp-swing {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

/* 6. Ripple - Expanding ripple */
@keyframes tp-ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 7. Orbit - Circular orbit motion */
@keyframes tp-orbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}


/* ========================================
   Hero Section with CSS Art
   ======================================== */
.tp-hero-section {
    background: linear-gradient(135deg, var(--tp-gradient-start) 0%, var(--tp-gradient-end) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 100px;
}

/* Gradient overlay */
.tp-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(233, 60, 5, 0.2), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* CSS Art: Hexagons */
.tp-geometric-shape {
    position: absolute;
    pointer-events: none;
}

.tp-hexagon-1 {
    width: 120px;
    height: 138px;
    background: rgba(255, 255, 255, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 15%;
    right: 10%;
    animation: tp-spiral 15s ease-in-out infinite;
    z-index: 1;
}

.tp-hexagon-2 {
    width: 80px;
    height: 92px;
    background: rgba(255, 255, 255, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 20%;
    left: 8%;
    animation: tp-wave 12s ease-in-out infinite;
    z-index: 1;
}

/* CSS Art: Triangles */
.tp-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(255, 255, 255, 0.07);
    top: 40%;
    right: 20%;
    animation: tp-swing 8s ease-in-out infinite;
    z-index: 1;
}

.tp-triangle-2 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 69px solid rgba(255, 255, 255, 0.05);
    bottom: 30%;
    left: 15%;
    animation: tp-glide 10s ease-in-out infinite;
    z-index: 1;
}

/* CSS Art: Floating Orbs */
.tp-floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.tp-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation: tp-morph 20s ease-in-out infinite;
}

.tp-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: tp-morph 18s ease-in-out infinite reverse;
}

.tp-orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: tp-ripple 8s ease-out infinite;
}

/* Hero Pill Badge */
.tp-hero-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tp-hero-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Buttons */
.tp-btn-primary {
    background: white !important;
    color: var(--tp-primary) !important;
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.tp-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tp-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.tp-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    color: var(--tp-secondary) !important;
}

.tp-btn-secondary {
    border: 2px solid white !important;
    background: transparent !important;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-btn-secondary:hover {
    background: white !important;
    color: var(--tp-primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.tp-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tp-trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.tp-trust-badge i {
    font-size: 1.2rem;
}

/* Hero Visual Card */
.tp-hero-visual {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tp-hero-visual:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.tp-visual-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tp-hero-visual:hover .tp-visual-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.tp-visual-icon {
    font-size: 60px;
    color: white;
    animation: tp-swing 6s ease-in-out infinite;
}


/* ========================================
   Info Visual Section
   ======================================== */
.tp-info-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.1);
}

.tp-info-icon-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tp-morph 12s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.tp-info-icon-circle i {
    font-size: 80px;
    color: white;
    animation: tp-spiral 20s linear infinite;
}

/* Check List */
.tp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-check-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--tp-dark);
    transition: all 0.3s ease;
    cursor: default;
}

.tp-check-list li:hover {
    transform: translateX(8px);
    color: var(--tp-primary);
}

.tp-check-list li i {
    transition: all 0.3s ease;
}

.tp-check-list li:hover i {
    transform: scale(1.2);
}


/* ========================================
   Why It Matters Cards
   ======================================== */
.tp-why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.tp-why-card:hover::before {
    left: 100%;
}

.tp-why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
    border-color: var(--tp-primary);
}

.tp-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tp-why-card:hover .tp-why-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.tp-why-icon i {
    font-size: 35px;
    color: var(--tp-primary);
    transition: all 0.4s ease;
}

.tp-why-card:hover .tp-why-icon i {
    color: white;
    animation: tp-swing 1s ease-in-out;
}


/* ========================================
   Who Needs Cards
   ======================================== */
.tp-needs-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
    border: 2px solid var(--tp-light);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-needs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--tp-primary);
}

.tp-needs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--tp-light);
}

.tp-needs-header i {
    font-size: 40px;
    color: var(--tp-primary);
    transition: all 0.4s ease;
}

.tp-needs-card:hover .tp-needs-header i {
    transform: scale(1.2) rotate(15deg);
    animation: tp-spiral 2s ease-in-out;
}

.tp-needs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-needs-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--tp-dark);
    transition: all 0.3s ease;
}

.tp-needs-list li:hover {
    transform: translateX(10px);
    color: var(--tp-primary);
}


/* ========================================
   Service Cards
   ======================================== */
.tp-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tp-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tp-primary), var(--tp-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tp-service-card:hover::after {
    transform: scaleX(1);
}

.tp-service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
    border-color: var(--tp-primary);
}

.tp-service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-service-card:hover .tp-service-icon {
    transform: translateY(-10px) rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.tp-service-icon i {
    font-size: 40px;
    color: var(--tp-primary);
    transition: all 0.4s ease;
}

.tp-service-card:hover .tp-service-icon i {
    color: white;
    animation: tp-wave 2s ease-in-out;
}

.tp-service-badge {
    display: inline-block;
    background: var(--tp-light);
    color: var(--tp-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.tp-service-card:hover .tp-service-badge {
    background: var(--tp-primary);
    color: white;
    transform: translateY(-3px);
}


/* ========================================
   Process Cards
   ======================================== */
.tp-process-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--tp-light);
    position: relative;
    overflow: hidden;
}

.tp-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.tp-process-card:hover::before {
    left: 100%;
}

.tp-process-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--tp-primary);
}

.tp-process-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--tp-primary);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.tp-process-card:hover .tp-process-number {
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    color: white;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.tp-process-card-final {
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border: 2px solid var(--tp-primary);
}

.tp-process-card-final:hover {
    transform: translateY(-10px) scale(1.02);
}


/* ========================================
   Benefit Cards
   ======================================== */
.tp-benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tp-benefit-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.tp-benefit-card:hover::before {
    width: 400px;
    height: 400px;
}

.tp-benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
    border-color: var(--tp-primary);
}

.tp-benefit-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.tp-benefit-card:hover .tp-benefit-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.tp-benefit-icon-wrapper i {
    font-size: 40px;
    color: var(--tp-primary);
    transition: all 0.4s ease;
}

.tp-benefit-card:hover .tp-benefit-icon-wrapper i {
    color: white;
    animation: tp-orbit 2s ease-in-out;
}


/* ========================================
   Problems Grid
   ======================================== */
.tp-problems-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tp-problem-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.tp-problem-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--tp-primary);
}

.tp-problem-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tp-problem-item:hover .tp-problem-icon {
    transform: scale(1.2) rotate(15deg);
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.tp-problem-icon i {
    font-size: 22px;
    color: var(--tp-primary);
    transition: all 0.3s ease;
}

.tp-problem-item:hover .tp-problem-icon i {
    color: white;
}

.tp-problem-content h6 {
    margin-bottom: 8px;
    color: var(--tp-dark);
    font-weight: 600;
}


/* ========================================
   FAQ Accordion
   ======================================== */
.tp-faq-accordion .tp-faq-item {
    background: white;
    border: 2px solid var(--tp-light);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tp-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
    border-color: var(--tp-primary);
}

.tp-faq-item .accordion-button {
    background: white;
    color: var(--tp-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s ease;
}

.tp-faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--tp-light) 0%, #FFE5DC 100%);
    color: var(--tp-primary);
    box-shadow: none;
}

.tp-faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.tp-faq-item .accordion-button i {
    color: var(--tp-primary);
    transition: all 0.3s ease;
}

.tp-faq-item .accordion-button:not(.collapsed) i {
    transform: scale(1.2);
    animation: tp-swing 1s ease-in-out;
}

.tp-faq-item .accordion-body {
    padding: 25px 30px;
    color: var(--tp-gray);
    line-height: 1.8;
    background: white;
}


/* ========================================
   CTA Card
   ======================================== */
.tp-cta-card {
    background: linear-gradient(135deg, var(--tp-gradient-start) 0%, var(--tp-gradient-end) 100%);
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.tp-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(233, 60, 5, 0.2), transparent 50%);
    pointer-events: none;
}

.tp-cta-overlay::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: tp-morph 15s ease-in-out infinite;
}

.tp-cta-overlay::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: tp-morph 18s ease-in-out infinite reverse;
}

.tp-cta-content {
    position: relative;
    z-index: 2;
}

.tp-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tp-spiral 20s linear infinite;
}

.tp-cta-icon i {
    font-size: 50px;
    color: white;
}

.tp-cta-card .btn {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tp-cta-card .btn:hover {
    transform: translateY(-8px) scale(1.05);
}


/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .tp-hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .tp-hexagon-1 {
        width: 80px;
        height: 92px;
    }

    .tp-hexagon-2 {
        width: 60px;
        height: 69px;
    }

    .tp-orb-1 {
        width: 200px;
        height: 200px;
    }

    .tp-orb-2 {
        width: 150px;
        height: 150px;
    }

    .tp-info-visual {
        height: 300px;
    }

    .tp-info-icon-circle {
        width: 150px;
        height: 150px;
    }

    .tp-info-icon-circle i {
        font-size: 60px;
    }

    .tp-cta-card {
        padding: 60px 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tp-hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    h1.display-4 {
        font-size: 2rem !important;
    }

    .lead {
        font-size: 1rem;
    }

    .tp-hero-pill {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .tp-hexagon-1,
    .tp-hexagon-2,
    .tp-triangle-1,
    .tp-triangle-2 {
        display: none;
    }

    .tp-orb-1 {
        width: 150px;
        height: 150px;
    }

    .tp-orb-2,
    .tp-orb-3 {
        display: none;
    }

    .tp-trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .tp-trust-badge {
        width: 100%;
        justify-content: center;
    }

    .tp-hero-visual {
        padding: 40px 30px;
    }

    .tp-visual-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .tp-visual-icon {
        font-size: 40px;
    }

    .tp-info-visual {
        height: 250px;
    }

    .tp-info-icon-circle {
        width: 120px;
        height: 120px;
    }

    .tp-info-icon-circle i {
        font-size: 50px;
    }

    .tp-why-card,
    .tp-service-card,
    .tp-benefit-card {
        padding: 30px 20px;
    }

    .tp-process-card {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }

    .tp-process-number {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .tp-cta-card {
        padding: 40px 20px;
    }

    .tp-cta-icon {
        width: 80px;
        height: 80px;
    }

    .tp-cta-icon i {
        font-size: 40px;
    }

    h2.display-5 {
        font-size: 1.8rem !important;
    }

    h2.display-6 {
        font-size: 1.5rem !important;
    }

    .btn-lg {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }
}


/* ========================================
   Performance Optimizations
   ======================================== */
.tp-hero-section,
.tp-geometric-shape,
.tp-floating-orb,
.tp-hero-pill,
.tp-hero-visual,
.tp-why-card,
.tp-service-card,
.tp-process-card,
.tp-benefit-card,
.tp-problem-item,
.tp-faq-item {
    will-change: transform;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
