/**
 * Escrow Widget Styles
 * Responsive, modern design with your color scheme
 */

.escrow-section {
    background-color: #eeedf2;
    padding: 80px 20px;
    position: relative;
}

.product__tag a {
  white-space: nowrap;
}

.escrow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* Trust Badge */
.escrow-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #61ce70;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(97, 206, 112, 0.3);
}

.escrow-trust-badge i {
    font-size: 16px;
}

/* Header */
.escrow-header {
    text-align: center;
    margin-bottom: 40px;
}

.escrow-main-heading {
    color: #1a152e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.escrow-main-heading br {
    display: none;
}

.escrow-sub-heading {
    color: #55545b;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Steps Grid */
.escrow-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.escrow-step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 21, 46, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escrow-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 21, 46, 0.12);
}

.escrow-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #5f3afc;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(95, 58, 252, 0.3);
}

.escrow-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(95, 58, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
}

.escrow-step-card:hover .escrow-icon-wrapper {
    background-color: rgba(95, 58, 252, 0.15);
}

.escrow-icon-wrapper i {
    font-size: 30px;
    color: #5f3afc;
}

.escrow-icon-wrapper svg {
    fill: #5f3afc;
    width: 30px;
    height: 30px;
}

.escrow-step-title {
    color: #1a152e;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.escrow-step-description {
    color: #55545b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .escrow-section {
        padding: 60px 20px;
    }
    
    .escrow-main-heading {
        font-size: 36px;
    }
    
    .escrow-steps-grid {
        gap: 25px;
    }
    
    .escrow-step-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .escrow-section {
        padding: 50px 15px;
    }
    
    .escrow-main-heading {
        font-size: 30px;
    }
    
    .escrow-sub-heading {
        font-size: 16px;
    }
    
    .escrow-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .escrow-step-card {
        padding: 25px 20px;
    }
    
    .escrow-step-number {
        top: -12px;
        right: -12px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .escrow-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .escrow-icon-wrapper i {
        font-size: 26px;
    }
    
    .escrow-step-title {
        font-size: 20px;
    }
    
    .escrow-trust-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .escrow-section {
        padding: 40px 12px;
    }
    
    .escrow-main-heading {
        font-size: 26px;
    }
    
    .escrow-sub-heading {
        font-size: 15px;
    }
    
    .escrow-step-card {
        padding: 20px 15px;
    }
    
    .escrow-step-title {
        font-size: 18px;
    }
    
    .escrow-step-description {
        font-size: 14px;
    }
    
    .escrow-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .escrow-icon-wrapper i {
        font-size: 22px;
    }
}

/* Animation support */
.escrow-step-card {
    animation: fadeInUp 0.6s ease forwards;
}

.escrow-step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.escrow-step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.escrow-step-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .escrow-step-card {
        animation: none !important;
    }
    
    .escrow-step-card:hover {
        transform: none !important;
    }
}


/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

.about-page {
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f7f7f9 0%, #eeedf2 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 58, 252, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-title {
    color: #1a152e;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-hero-subtitle {
    color: #55545b;
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.about-mission {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-mission-badge {
    display: inline-block;
    background: rgba(95, 58, 252, 0.1);
    color: #5f3afc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-section-title {
    color: #1a152e;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-section-subtitle {
    color: #55545b;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 15px;
}

.about-mission-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(26, 21, 46, 0.08);
}

/* What We Do Section */
.about-what-we-do {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-service-item {
    text-align: center;
    padding: 30px 20px;
    background: #f7f7f9;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 21, 46, 0.08);
}

.about-service-icon {
    width: 70px;
    height: 70px;
    background: rgba(95, 58, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #5f3afc;
}

.about-service-title {
    color: #1a152e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-service-description {
    color: #55545b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Why Us - Trust Signals */
.about-why-us {
    background-color: #f7f7f9;
    padding: 80px 0;
}

.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-trust-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 21, 46, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5f3afc;
}

.about-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 21, 46, 0.1);
}

.about-trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(95, 58, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #5f3afc;
}

.about-trust-title {
    color: #1a152e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-trust-description {
    color: #55545b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Who It's For Section */
.about-who-for {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-audience-item {
    text-align: center;
    padding: 30px 20px;
}

.about-audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5f3afc, #7c5cfc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(95, 58, 252, 0.3);
}

.about-audience-title {
    color: #1a152e;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-audience-description {
    color: #55545b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #1a152e 0%, #2d2352 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 58, 252, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-content {
    position: relative;
    z-index: 1;
}

.about-cta-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5f3afc;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(95, 58, 252, 0.3);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(95, 58, 252, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.about-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN - ABOUT US
   ============================================ */

@media (max-width: 1024px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 50px;
    }
    
    .about-hero-title {
        font-size: 34px;
    }
    
    .about-hero-subtitle {
        font-size: 17px;
    }
    
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-mission-image {
        order: -1;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .about-trust-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-cta-title {
        font-size: 30px;
    }
    
    .about-cta-description {
        font-size: 16px;
    }
    
    .about-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-service-item {
        padding: 25px 15px;
    }
    
    .about-trust-item {
        padding: 25px 20px;
    }
    
    .about-section-title {
        font-size: 24px;
    }
    
    .about-cta-title {
        font-size: 24px;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Animation */
.about-service-item,
.about-trust-item,
.about-audience-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.about-service-item:nth-child(1) { animation-delay: 0.1s; }
.about-service-item:nth-child(2) { animation-delay: 0.2s; }
.about-service-item:nth-child(3) { animation-delay: 0.3s; }
.about-service-item:nth-child(4) { animation-delay: 0.4s; }
.about-trust-item:nth-child(1) { animation-delay: 0.1s; }
.about-trust-item:nth-child(2) { animation-delay: 0.2s; }
.about-trust-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-service-item,
    .about-trust-item,
    .about-audience-item {
        animation: none !important;
        opacity: 1;
    }
    
    .about-service-item:hover,
    .about-trust-item:hover {
        transform: none !important;
    }
}