/* Simple Client Profile Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    color: #334155;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.dots-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: hsl(166, 72%, 26%);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.dot.connected {
    background: hsl(166, 52%, 20%);
    box-shadow: 0 0 10px hsla(166, 72%, 26%, 0.6);
}
.ripple {
    position: absolute;
    border: 2px solid hsla(166, 72%, 26%, 0.4);
    border-radius: 50%;
    animation: ripple-effect 2s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}
.simple-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}
/* Profile Header */
.profile-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #0f766e;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-info h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.profile-info p {
    color: #64748b;
    margin-bottom: 1rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.contact-info span {
    font-size: 0.875rem;
    color: #64748b;
}
/* Services Container */
.services-container h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
/* Responsive grid for services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: fit-content;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.service-title a{
    text-decoration: none;
    color: inherit;
}
.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-image{
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.service-image img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service-description {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.service-features li {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}
.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    flex: 1;
}
.btn-primary {
    background: #0f766e;
    color: white;
}
.btn-primary:hover {
    background: #0d6562;
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: #0f766e;
    border: 1px solid #0f766e;
}
.btn-outline:hover {
    background: #0f766e;
    color: white;
    transform: translateY(-1px);
}
/* Platform Footer */
.platform-footer {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #0f766e;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 0.5rem;
}
.footer-logo p {
    font-size: 0.875rem;
    color: #64748b;
}
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #0f766e;
}
.footer-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.cta-button {
    display: inline-block;
    background: #0f766e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #0d6562;
    transform: translateY(-1px);
}
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}
.footer-bottom-only {
    text-align: center;
}
.footer-bottom-only p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}
/* Service View Styles */
.service-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}
.service-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f766e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.back-link:hover {
    color: #0d6562;
}
.service-hero {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}
.service-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.service-hero-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #0f766e;
}
.service-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.category-badge {
    background: #0f766e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}
.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stars .star {
    color: #9e9e9e;
    font-size: 1.125rem;
}
.stars .star.active {
    color: #fbbf24;
    font-size: 1.125rem;
}
.rating-text {
    color: #64748b;
    font-size: 0.875rem;
}
.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.service-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.service-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 500;
}
.highlight svg {
    color: #059669;
}
.service-layout {
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 1;
}
.service-layout .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.service-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.service-main section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}
.service-main h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.include-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.include-item:hover {
    border-color: #0f766e;
    transform: translateY(-2px);
}
.include-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0fdfa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
}
.include-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.include-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.process-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.process-step:hover {
    border-color: #0f766e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0f766e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}
.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.step-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
}
.step-duration {
    font-size: 0.875rem;
    color: #0f766e;
    font-weight: 500;
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.review-item {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fafafa;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-info strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
}
.reviewer-info span {
    font-size: 0.875rem;
    color: #64748b;
}
.review-rating .star {
    color: #fbbf24;
    font-size: 1rem;
}
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    /* position: sticky; */
    top: 120px;
    z-index: 2;
}
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.currency {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}
.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0f766e;
}
.price-note {
    color: #64748b;
    font-size: 0.875rem;
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}
.pricing-features .feature svg {
    color: #059669;
    flex-shrink: 0;
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdfa;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #0f766e;
}
/* Client Branding in Navigation */
.client-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.client-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.client-name strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.875rem;
}
.client-name span {
    display: block;
    color: #64748b;
    font-size: 0.75rem;
}
/* Contact Card */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    /* position: sticky; */
    top: calc(120px + var(--pricing-card-height, 360px) + 24px);
    z-index: 1;
}
.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
/* Platform Footer */
.platform-footer {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 2rem;
    width: min(100% - 2rem, 1168px);
    margin: 3rem auto 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #0f766e;
    position: relative;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 0.5rem;
}
.footer-logo p {
    font-size: 0.875rem;
    color: #64748b;
}
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #0f766e;
}
.footer-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.cta-button {
    display: inline-block;
    background: #0f766e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #0d6562;
    transform: translateY(-1px);
}
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}
.footer-bottom-only {
    text-align: center;
}
.footer-bottom-only p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}
.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}
.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}
.modal-body {
    padding: 2rem;
}
.order-summary {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.order-summary h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}
.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 1.125rem;
}
.form-group {
    margin-bottom: 0.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
.payment-methods h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.payment-options {
    display: flex;
    gap: 1rem;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
}
.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}
/* Responsive */
@media (max-width: 640px) {
    .simple-profile {
        padding: 1rem;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .service-actions {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .service-hero h1 {
        font-size: 2rem;
    }
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    .includes-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        position: static;
    }
    /* Disable sticky on mobile for pricing card too */
    .pricing-card {
        position: static;
        top: auto;
        z-index: auto;
    }
    .service-sidebar {
        position: static;
    }
    .platform-footer {
        margin: 3rem 1rem 0;
    }
}
/* 404 Error Page Styles */
.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}
.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(15, 118, 110, 0.3);
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.error-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-button.primary {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-button.primary:hover {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.3);
}
.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(15, 118, 110, 0.2);
}
.cta-button.secondary:hover {
    background: rgba(15, 118, 110, 0.1);
    border-color: #0f766e;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    .error-title {
        font-size: 2rem;
    }
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
}
footer .footer-bottom a{
    text-decoration: none;
    color: #376e5c;
}
footer .footer-bottom a:hover{
    text-decoration: underline;
}
footer .footer-bottom-only a{
    text-decoration: none;
    color: #376e5c;
}
footer .footer-bottom-only a:hover{
    text-decoration: underline;
}
.price-note{
    display: block;
    background: #64748b;
    background-clip: text;
    font-weight: 500;
}
.original-price{
    text-decoration: line-through;
    text-decoration-color: red;
}
.text-no-recenzii{
    background: #eaeaea;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
}
.contact-precomanda{
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
/* Contact Modal Styles */
.contact-info {
    margin-bottom: 2rem;
}
.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.contact-info p {
    /* margin-bottom: 0.5rem; */
    color: #64748b;
    font-size: 0.9rem;
}
.contact-info a {
    color: #0f766e;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-form {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}
.contact-form h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}
/* Contact Response Styles */
.contact-response {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
/* Alert Success */
.contact-response.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
}
.contact-response.alert-success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert Warning */
.contact-response.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
}
.contact-response.alert-warning::before {
    content: "⚠";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert Error */
.contact-response.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
}
.contact-response.alert-error::before {
    content: "✕";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Alert content wrapper */
.contact-response .alert-content {
    flex: 1;
    display: inline;
    margin-left: 5px;
}
.text-muted{
    color: #94a3b8;
}

/* Purchase Modal Multi-Step Styles */
.purchase-modal-content {
    max-width: 600px;
    width: 90vw;
}

/* Purchase Validation Message */
.purchase-validation-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.purchase-validation-message.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.purchase-validation-message.alert-warning {
    background: #fffbeb;
    color: #92400e;
    border-color: #fed7aa;
}

.purchase-validation-message.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}
.purchase-validation-message.alert-info{
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.purchase-validation-message::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.purchase-validation-message.alert-error::before {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z' clip-rule='evenodd'%3e%3c/path%3e%3c/svg%3e");
}

.purchase-validation-message.alert-warning::before {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z' clip-rule='evenodd'%3e%3c/path%3e%3c/svg%3e");
}

.purchase-validation-message.alert-success::before {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'%3e%3c/path%3e%3c/svg%3e");
}
.purchase-validation-message.alert-info::before {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-3a1 1 0 00-1 1v1a1 1 0 102 0V8a1 1 0 00-1-1zm0 5a1 1 0 00-1 1v3a1 1 0 102 0v-3a1 1 0 00-1-1z' clip-rule='evenodd'%3e%3c/path%3e%3c/svg%3e");
}

.purchase-validation-message .alert-content {
    padding-left: 1.5rem;
}

.purchase-progress {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 2rem;
    padding: 0 1rem; */
    position: relative;
    margin-top: 15px;
    margin-bottom: -15px;
}

.purchase-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #0ea5e9;
    color: white;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #0ea5e9;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #10b981;
    font-weight: 600;
}

.purchase-step {
    min-height: 300px;
}

.purchase-step h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.purchase-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.purchase-navigation .btn {
    flex: 1;
    max-width: 200px;
}

.order-summary-final {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.order-summary-final h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section h6 {
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-section p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

/* Address form groups visibility */
.form-group[style*="display: none"] {
    display: none !important;
}

/* Checkbox styling */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.checkbox-input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-input:hover {
    border-color: #376e5c;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-input:checked {
    background-color: #376e5c;
    border-color: #376e5c;
}

.checkbox-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    user-select: none;
    transition: color 0.3s ease;
}

.checkbox-label:hover .checkbox-text {
    color: #376e5c;
}

/* Responsive adjustments for purchase modal */
@media (max-width: 640px) {
    .purchase-modal-content {
        width: 95vw;
        margin: 1rem;
    }
    
    .purchase-progress {
        padding: 0 0.5rem;
    }
    
    .progress-step {
        max-width: 80px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .purchase-navigation {
        flex-direction: column;
    }
    
    .purchase-navigation .btn {
        max-width: none;
    }
    
    .purchase-step {
        min-height: 300px;
    }
}
.no-services{
    background: #e7e7e7;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #c3c3c3;
    margin-top: -50px;
    margin-bottom: 15px;
}
.term-expired{
    background: #e7e7e7;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #c3c3c3;
    margin-top: -50px;
    margin-bottom: 15px;
}
.no-services-mtop{
    margin-top: 15px;
}
.availability-note{
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 5px;
    text-align: center;
    width: 100%;
}

/* OnePage Modal Specific Styles */
#onePageModal .modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

#onePageModal .purchase-step {
    display: block;
    margin-bottom: 0;
}

#onePageModal .purchase-step h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

#onePageModal .form-group {
    margin-bottom: 1rem;
}

#onePageModal .form-group:last-child {
    margin-bottom: 1.5rem;
}

/* CIF Validation Styles */
.cif-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cif-input-wrapper input {
    flex: 1;
}

.cif-loading {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

.cif-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cif-result {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.cif-valid {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cif-invalid {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.cif-error {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.company-name {
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.cif-result.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Groups for Country/Region Logic */
#onePageCountyGroup,
#onePageRegionGroup,
#onePageBillingCountyGroup,
#onePageBillingCountyTextGroup,
#onePageBillingCityGroup,
#onePageBillingCityTextGroup {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    #onePageModal .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    #onePageModal .purchase-step h4 {
        font-size: 1rem;
    }
}

/* Enhanced Button Styling */
#onePageModal .btn-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#onePageModal .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#onePageModal .btn-primary:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

/* Fix checkbox dimensions in OnePage Modal */
#onePageModal .checkbox-input {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
}

/* Input Focus States */
#onePageModal input:focus,
#onePageModal select:focus,
#onePageModal textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Error States */
#onePageModal input.error,
#onePageModal select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Validation Message Styling */
#onePageModal .validation-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

#onePageModal .validation-message.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#onePageModal .validation-message.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#onePageModal .validation-message.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Select2 Integration */
#onePageModal .select2-container {
    width: 100% !important;
}

#onePageModal .select2-selection {
    height: auto !important;
    min-height: 42px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

#onePageModal .select2-selection__rendered {
    padding: 8px 12px !important;
    line-height: 1.5 !important;
}

/* Loading State */
#onePageModal .btn-primary:disabled {
    position: relative;
}

#onePageModal .btn-primary:disabled::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Terms and Privacy Page Styles */
.terms-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.section-header {
    border-bottom: 2px solid #0f766e;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.term-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.term-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.term-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f766e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.term-item h3::before {
    content: "▸";
    color: #0f766e;
    font-size: 1rem;
}

.term-item p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.term-item p:last-child {
    margin-bottom: 0;
}

.term-item ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.term-item ul li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.term-item ul li::before {
    content: "•";
    color: #0f766e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.contact-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #0f766e;
    font-weight: 600;
}

/* Custom Terms Content from Database */
.custom-terms-content {
    color: #374151;
    line-height: 1.7;
    font-size: 0.95rem;
}

.custom-terms-content p {
    margin-bottom: 1rem;
}

.custom-terms-content p:last-child {
    margin-bottom: 0;
}

/* Not Published Message Styles */
.not-published-message {
    text-align: center;
    padding: 2rem;
}

.message-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.message-icon {
    color: #f59e0b;
    width: 48px;
    height: 48px;
}

.message-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.message-content {
    margin-bottom: 2rem;
    text-align: center;
}

.message-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-section,
.platform-terms-section,
.support-section {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-section h4,
.platform-terms-section h4,
.support-section h4 {
    color: #0f766e;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.merchant-contact p {
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.merchant-contact p:last-child {
    margin-bottom: 0;
}

.merchant-contact strong {
    color: #1e293b;
    font-weight: 600;
}

.merchant-contact a {
    color: #0f766e;
    text-decoration: none;
}

.merchant-contact a:hover {
    text-decoration: underline;
}

.support-section p, .platform-terms-section p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #0f766e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: #f0fdfa;
    border-color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

.support-link svg {
    color: #0f766e;
    flex-shrink: 0;
}

/* Always Visible Support Section */
.support-section.always-visible {
    margin-top: 2rem;
    border-top: 2px solid #e2e8f0;
    padding-top: 2rem;
}

.support-section.always-visible h4 {
    color: #0f766e;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Design for Not Published Message */
@media (max-width: 768px) {
    .not-published-message {
        padding: 1.5rem;
    }
    
    .message-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .message-header h3 {
        font-size: 1.25rem;
    }
    
    .contact-section,
    .platform-terms-section,
    .support-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .support-links {
        gap: 0.75rem;
    }
    
    .support-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .term-item h3 {
        font-size: 1.125rem;
    }
    
    .term-item p,
    .term-item ul li {
        font-size: 0.9rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .terms-container {
        gap: 2rem;
    }
    
    .terms-section {
        padding: 1.5rem 1rem;
    }
    
    .section-header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-content {
        gap: 1.5rem;
    }
    
    .term-item {
        padding-bottom: 1rem;
    }
}

.order-subtotal{
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin: 8px 0;
    transition: border-color 0.3s ease;
}

/* Terms Agreement Checkbox - Special styling */
#onePageModal #onePageTermsAgreement {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px;
    flex-shrink: 0;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement) {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin: 8px 0;
    transition: border-color 0.3s ease;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement):hover {
    border-color: #376e5c;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement) .checkbox-text {
    font-size: 14px;
    line-height: 1.4;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement) .checkbox-text a {
    color: #376e5c;
    text-decoration: none;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement) .checkbox-text a:hover {
    text-decoration: underline;
}

/* Error state for terms checkbox */
#onePageModal #onePageTermsAgreement.error + .checkbox-text,
#onePageModal .checkbox-label:has(#onePageTermsAgreement.error) {
    border-color: #dc3545;
    background-color: #fff5f5;
}

#onePageModal .checkbox-label:has(#onePageTermsAgreement.error) .checkbox-text {
    color: #dc3545;
}

/* Footer Actions Row */
.footer-actions {
    padding: 0 0 1rem 0;
    margin-top: -10px;
}

.footer-actions-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.footer-actions .footer-legal{
    text-align: center;
}
.footer-actions .footer-legal a{
    color: #376e5c;
    font-size: 0.875rem;
    text-decoration: none;
}
.action-col {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.action-col a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.action-col a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.action-col img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Custom footer code styling */
.action-col:last-child {
    text-align: center;
}

/* Report Problem Button Styling */
.report-problem-btn {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: #376e5c;
    color: white !important;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
    white-space: nowrap;
}

.report-problem-btn:hover {
    background-color: #376e5c !important;
    transform: translateY(-2px) !important;
    opacity: 1 !important;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.report-problem-btn svg {
    flex-shrink: 0;
}

.report-problem-btn span {
    line-height: 1.2;
}

/* Responsive design for footer actions */
@media (max-width: 1024px) {
    .footer-actions-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-actions-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .action-col img {
        max-height: 40px;
    }
    
    .report-problem-btn {
        margin: 0 auto;
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .footer-actions {
        padding: 1.5rem 0;
    }
    
    .footer-actions-content {
        gap: 1rem;
    }
    
    .action-col img {
        max-height: 35px;
    }
    
    .report-problem-btn {
        font-size: 11px;
        padding: 8px 10px;
        gap: 6px;
    }
}
