/* ===========================
   Exchange Service Page Styles
   =========================== */

/* Page Title Section */
.page__title-area {
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page__title-shape img {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.page-title-dot-4 {
    top: 10%;
    left: 5%;
    width: 20px;
    opacity: 0.6;
}

.page-title-dot {
    top: 20%;
    right: 10%;
    width: 15px;
    opacity: 0.5;
}

.page-title-dot-2 {
    bottom: 15%;
    left: 15%;
    width: 18px;
    opacity: 0.7;
}

.page-title-dot-3 {
    bottom: 20%;
    right: 8%;
    width: 16px;
    opacity: 0.6;
}

.page-title-plus {
    top: 30%;
    left: 20%;
    width: 25px;
    opacity: 0.4;
}

.page-title-triangle {
    bottom: 30%;
    right: 15%;
    width: 30px;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.page__title-wrapper h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    padding: 0 10px;
}

.breadcrumb-item a {
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Sidebar Styles */
.services__sidebar {
    position: sticky;
    top: 100px;
}

.exchange__sidebar-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.exchange__sidebar-box:hover {
    box-shadow: 0 15px 50px rgba(251, 146, 60, 0.15);
    transform: translateY(-5px);
}

.exchange__sidebar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.exchange__sidebar-title i {
    font-size: 24px;
    color: #a245f8;
}

.exchange__sidebar-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

/* Modules List */
.exchange__modules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exchange__modules ul li {
    margin-bottom: 15px;
}

.module__item {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.module__item:hover {
    border-color: #a245f8;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    transform: translateX(-5px);
}

.module__item i {
    font-size: 22px;
    color: #a245f8;
    min-width: 25px;
}

.module__item span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Highlight Box */
.exchange__highlight-box {
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.exchange__highlight-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.highlight__icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.exchange__highlight-box h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.exchange__highlight-box p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Support Box */
.exchange__support-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.support__icon {
    font-size: 45px;
    color: #a245f8;
}

.exchange__support-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.exchange__support-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.support__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #a245f8;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support__phone:hover {
    background: #ea580c;
    color: white;
    transform: scale(1.05);
}

.support__phone i {
    font-size: 16px;
}

/* Action Buttons */
.exchange__action-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exchange__download-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.exchange__download-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.exchange__demo-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.exchange__demo-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Intro Box */
.exchange__intro-box {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid #f3f4f6;
}

.intro__icon-large {
    font-size: 100px;
    color: #a245f8;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.text-gradient {
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exchange__intro-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.exchange__intro-box .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* Video Section */
.exchange__video-section {
    position: relative;
}

.video__wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video__wrapper:hover {
    transform: scale(1.02);
}

.video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(251, 146, 60, 0.5);
    transition: all 0.3s ease;
}

.play__btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(251, 146, 60, 0.7);
    color: white;
}

.play__btn i {
    margin-right: 5px;
}

/* Promo Banner */
.exchange__promo-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

.exchange__promo-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.promo__content {
    position: relative;
    z-index: 2;
}

.promo__badge {
    display: inline-block;
    margin-bottom: 15px;
}

.promo__badge span {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo__content h4 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

.promo__content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.7;
}

.promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.4);
    transition: all 0.3s ease;
}

.promo__btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 146, 60, 0.5);
}

/* Feature Cards */
.exchange__features-cards h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature__card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #a245f8 0%, #ea580c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature__card:hover::before {
    transform: scaleX(1);
}

.feature__card:hover {
    border-color: #a245f8;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(251, 146, 60, 0.2);
}

/* Different gradient colors for each card */
.feature__card-1:hover .card__icon { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.feature__card-2:hover .card__icon { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.feature__card-3:hover .card__icon { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.feature__card-4:hover .card__icon { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.feature__card-5:hover .card__icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.feature__card-6:hover .card__icon { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

.card__header {
    margin-bottom: 25px;
}

.card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a245f8 0%, #ea580c 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
    transition: all 0.4s ease;
}

.feature__card:hover .card__icon {
    transform: rotateY(360deg);
}

.card__header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.card__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card__body ul li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

.card__body ul li:last-child {
    margin-bottom: 0;
}

.card__body ul li i {
    font-size: 16px;
    color: #10b981;
    margin-top: 3px;
}

/* Dashboard Preview */
.exchange__dashboard-preview {
    position: relative;
}

.dashboard__frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.dashboard__frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .services__sidebar {
        position: static;
        margin-bottom: 50px;
    }
    
    .exchange__sidebar-box {
        margin-bottom: 30px;
    }
    
    .page__title-wrapper h3 {
        font-size: 32px;
    }
    
    .exchange__intro-box {
        padding: 30px;
    }
    
    .intro__icon-large {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .exchange__intro-box h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .page__title-wrapper h3 {
        font-size: 24px;
    }
    
    .exchange__intro-box {
        padding: 20px;
    }
    
    .exchange__intro-box h3 {
        font-size: 22px;
    }
    
    .feature__card {
        padding: 25px;
    }
    
    .promo__content h4 {
        font-size: 22px;
    }
    
    .exchange__promo-banner {
        padding: 30px 20px;
    }
}

/* Animations */
.wow {  
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}
