/* ==========================================
   PAYMENT & SERVICES PAGES
   ========================================== */

/* Cart Page Enhancement */
.cart-page {
    background: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.cart-table table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cart-table thead {
    background: linear-gradient(135deg, #f47d9d, #ecb6b5);
    color: #fff;
}

.cart-table thead th {
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

.cart-table tbody tr {
    transition: all 0.3s ease;
}

.cart-table tbody tr:hover {
    background: #f8f9fa;
}

.cart-table tbody td {
    padding: 25px 20px;
    vertical-align: middle;
}

.cart-side {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 30px;
    position: sticky;
    top: 20px;
}

.cart-side h3 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 20px;
    color: #333;
}

.cart-side h3 span:last-child {
    color: #f47d9d;
    font-weight: 700;
}

.cart-pay h4 {
    color: #f47d9d;
    font-size: 20px;
    margin-bottom: 20px;
}

.cart-pay ul li a {
    background: linear-gradient(135deg, #f47d9d, #ecb6b5);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 125, 157, 0.3);
}

.cart-pay ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 125, 157, 0.5);
    background: linear-gradient(135deg, #ecb6b5, #f47d9d);
}

/* Payment Details Page */
.payment-summary {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-right: 4px solid #f47d9d;
}

.payment-summary h4 {
    color: #ecb6b5;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.bank-info {
    background: #fff;
    border: 2px solid #ecb6b5;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bank-info:hover {
    box-shadow: 0 8px 25px rgba(244, 125, 157, 0.15);
    transform: translateY(-3px);
}

.bank-info h4 {
    color: #ecb6b5;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.info-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-row label {
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-row p,
.info-row span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.contact-info h4 {
    color: #ecb6b5;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.payment-instructions {
    background: linear-gradient(135deg, #fff3cd, #fffaeb);
    padding: 25px;
    border-radius: 12px;
    border-right: 4px solid #ffc107;
    margin-bottom: 25px;
}

.payment-instructions h5 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.payment-instructions ul {
    color: #856404;
    margin: 0;
    padding-right: 20px;
}

.payment-instructions ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Services Page */
.services-page {
    background: #fff;
    padding: 60px 0;
}

.services-page .best-serv {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.services-page .best-serv:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(244, 125, 157, 0.2);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-page {
    background: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.contact-page .sign-up-form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
}

/* ==========================================
   SEARCH & MEMBERS PAGES
   ========================================== */

.search-page,
.members-page {
    background: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.search-form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 35px;
    margin-bottom: 30px;
}

.search-form .form-group {
    margin-bottom: 20px;
}

.search-form input,
.search-form select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.search-form input:focus,
.search-form select:focus {
    border-color: #f47d9d;
    box-shadow: 0 0 0 4px rgba(244, 125, 157, 0.1);
}

/* Member Cards */
.member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(244, 125, 157, 0.2);
}

/* ==========================================
   NOTIFICATIONS PAGE
   ========================================== */

.notifications-page {
    background: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.notification-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-right: 4px solid #ecb6b5;
    transition: all 0.3s ease;
}

.notification-item:hover {
    box-shadow: 0 5px 15px rgba(244, 125, 157, 0.15);
    transform: translateX(-5px);
}

.notification-item.unread {
    background: linear-gradient(135deg, #fff8f9, #fff);
    border-right-color: #f47d9d;
}

/* ==========================================
   MY ACCOUNT / PROFILE PAGE TABS
   ========================================== */

.my-account-page {
    background: #fff;
    padding: 60px 0;
    min-height: 100vh;
}

.p-box1,
.p-box2,
.p-box22 {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.p-box1:hover,
.p-box2:hover,
.p-box22:hover {
    box-shadow: 0 8px 25px rgba(244, 125, 157, 0.12);
    transform: translateY(-3px);
}

.p-box1 h3,
.p-box2 h3,
.p-box22 h4 {
    color: #f47d9d;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Chat Page */
.chat-page {
    background: #fff;
    padding: 40px 0;
}

.chat-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ==========================================
   BUTTONS & ACTIONS GLOBAL
   ========================================== */

.btn-primary,
.btn-action {
    background: linear-gradient(135deg, #f47d9d, #ecb6b5);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 125, 157, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 125, 157, 0.5);
    background: linear-gradient(135deg, #ecb6b5, #f47d9d);
    color: #fff;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    color: #fff;
}

/* ==========================================
   ALERTS & MESSAGES
   ========================================== */

.alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #fffaeb);
    color: #856404;
    border-right: 4px solid #ffc107;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #e7f4ea);
    color: #155724;
    border-right: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #fce4e6);
    color: #721c24;
    border-right: 4px solid #dc3545;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #e3f5f8);
    color: #0c5460;
    border-right: 4px solid #17a2b8;
}

/* ==========================================
   HOMEPAGE ENHANCEMENTS
   ========================================== */

.best-services {
    padding: 60px 0;
    background: #fff;
}

.best-head h3 {
    color: #f47d9d;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.best-head h4 {
    color: #666;
    font-size: 20px;
}

.best-head h4 span {
    color: #ecb6b5;
    font-weight: 600;
}

.best-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.best-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(244, 125, 157, 0.2);
}

/* Hero Buttons Section */
.hero-buttons-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafbfc, #fff);
}

.hero-button {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.hero-button-primary {
    border-color: #f47d9d;
}

.hero-button-secondary {
    border-color: #ecb6b5;
}

.hero-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(244, 125, 157, 0.2);
}

.hero-button h3 {
    color: #f47d9d;
    margin: 20px 0;
    font-size: 22px;
    font-weight: 700;
}

.hero-button p {
    color: #666;
    line-height: 1.6;
}

.hero-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f47d9d, #ecb6b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-icon-wrapper i {
    color: #fff;
    font-size: 32px;
}

/* ==========================================
   COMPATIBILITY TEST RESULTS PAGE
   ========================================== */

.compatibility-test-results {
    margin-top: 20px;
}

.compatibility-test-results h3 {
    color: #ecb6b5;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.compatibility-category {
    margin-bottom: 35px;
}

.compatibility-category h4 {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    border-right: 5px solid #f47d9d;
    font-size: 20px;
}

.answers-list .answer-item {
    background: #fff;
    border: 2px solid #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.answers-list .answer-item:hover {
    border-color: #ecb6b5;
    box-shadow: 0 5px 15px rgba(244, 125, 157, 0.1);
    transform: translateY(-3px);
}

.user-answer {
    background: linear-gradient(135deg, #fafbfc, #fff);
    padding: 18px;
    border-radius: 10px;
    border-right: 3px solid #ecb6b5;
}

.user-answer h6 {
    color: #ad7d7c;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
}

.user-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Reset Section */
.reset-section {
    margin-top: 40px;
    background: linear-gradient(135deg, #fff3cd, #fffaeb);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
}

.reset-section h4 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.warning-note {
    background: linear-gradient(135deg, #f8d7da, #fce4e6);
    border: 2px solid #f5c6cb;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.warning-note p {
    color: #721c24;
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
}

.warning-note strong {
    font-size: 16px;
}

/* Purchase Required Box */
.purchase-required {
    text-align: center;
    padding: 50px 30px;
}

.purchase-required i {
    font-size: 70px;
    color: #856404;
    margin-bottom: 25px;
    display: block;
}

.purchase-required h3 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.purchase-required p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 30px;
}

.service-price span {
    font-size: 42px;
    font-weight: bold;
    color: #ecb6b5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Not Completed Message */
.not-completed {
    padding: 50px 30px;
    text-align: center;
}

.not-completed i {
    font-size: 80px;
    color: #ecb6b5;
    margin-bottom: 20px;
    display: block;
}

.not-completed h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.not-completed p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ==========================================
   RESPONSIVE ENHANCEMENTS
   ========================================== */

@media (max-width: 768px) {
    .cart-page,
    .services-page,
    .contact-page,
    .search-page,
    .members-page,
    .my-account-page,
    .notifications-page {
        padding: 30px 0;
        background: #fff;
    }

    .cart-side {
        margin-top: 30px;
        position: relative;
    }

    .payment-summary,
    .bank-info,
    .contact-info,
    .payment-instructions {
        padding: 20px;
    }

    .hero-button {
        padding: 25px;
        margin-bottom: 20px;
    }

    .compatibility-test-results h3,
    .purchase-required h3,
    .not-completed h3 {
        font-size: 22px;
    }

    .service-price span {
        font-size: 32px;
    }
}

