/* ==========================================================================
   ABOUT PAGE STYLES - HUZ PREFIX (Isolated from other pages)
   ========================================================================== */

/* About Hero Section */
.huz--about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #0a0a12 0%, #0d1117 50%, #1a1f2e 100%);
    overflow: hidden;
}

.huz--about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.huz--about-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.huz--about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.huz--about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.huz--about-badge svg {
    color: #10b981;
}

.huz--about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.huz--about-hero h1 .huz--highlight {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.huz--about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 20px;
}

.huz--about-hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.huz--about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.huz--hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.huz--hero-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.huz--hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.huz--hero-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.huz--about-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.huz--about-hero-cta .huz--btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    text-decoration: none;
}

.huz--about-hero-cta .huz--btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.huz--about-hero-cta .huz--btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.huz--about-hero-cta .huz--btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Section Base Styles */
.huz--section {
    padding: 100px 0;
}

.huz--section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.huz--highlight {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.huz--section-header {
    text-align: center;
    margin-bottom: 60px;
}

.huz--section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.huz--section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.huz--section-header.huz--heading-white h2 {
    color: #fff;
}

.huz--section-header.huz--heading-white p {
    color: #94a3b8;
}

.huz--section-header.huz--heading-dark h2 {
    color: #1a202c;
}

.huz--section-header.huz--heading-dark p {
    color: #64748b;
}

/* Who Is Junaid Section */
.huz--about-junaid {
    background: #ffffff;
}

.huz--about-junaid-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.huz--about-junaid-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

.huz--about-junaid-content .huz--lead-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.huz--about-junaid-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.huz--about-quote {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border-left: 4px solid #10b981;
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin-top: 30px;
    position: relative;
}

.huz--quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #10b981;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huz--quote-icon svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

.huz--about-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #1a202c;
    margin: 0 0 10px;
    line-height: 1.7;
}

.huz--about-quote cite {
    font-size: 0.95rem;
    color: #10b981;
    font-weight: 600;
    font-style: normal;
}

/* Visual Card */
.huz--about-visual-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.huz--about-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent);
    pointer-events: none;
}

.huz--visual-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huz--visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huz--visual-icon svg {
    color: #fff;
}

.huz--visual-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.huz--visual-header-text span {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.huz--visual-card-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.huz--visual-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.huz--stat-icon {
    font-size: 1.2rem;
}

.huz--visual-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.huz--visual-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Why Trust Section */
.huz--about-why-trust {
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 100%);
}

.huz--trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.huz--trust-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.huz--trust-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.huz--trust-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.huz--trust-feature-icon svg {
    color: #10b981;
}

.huz--trust-feature-icon.huz--verified {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.15));
}

.huz--trust-feature-icon.huz--verified svg {
    color: #3b82f6;
}

.huz--trust-feature-icon.huz--fast {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.15));
}

.huz--trust-feature-icon.huz--fast svg {
    color: #f59e0b;
}

.huz--trust-feature-icon.huz--support {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.15));
}

.huz--trust-feature-icon.huz--support svg {
    color: #ec4899;
}

.huz--trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.huz--trust-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.huz--trust-feature-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.huz--about-services {
    background: #f8fafc;
}

.huz--services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.huz--service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.huz--service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.huz--service-card.huz--featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border: 2px solid #10b981;
}

.huz--featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.huz--service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.huz--service-icon svg {
    color: #10b981;
}

.huz--service-card:hover .huz--service-icon {
    transform: scale(1.1) rotate(5deg);
}

.huz--service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.huz--service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.huz--service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.huz--service-link:hover {
    gap: 12px;
    color: #059669;
}

.huz--service-link svg {
    transition: all 0.3s ease;
}

.huz--service-link:hover svg {
    transform: translateX(3px);
}

/* Timeline Section */
.huz--about-timeline {
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 100%);
}

.huz--timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.huz--timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10b981, #059669);
    transform: translateX(-50%);
    border-radius: 3px;
}

.huz--timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.huz--timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.huz--timeline-item:nth-child(odd) .huz--timeline-content {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.huz--timeline-item:nth-child(even) .huz--timeline-content {
    padding-left: 60px;
}

.huz--timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.huz--timeline-marker span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.huz--timeline-item.huz--current .huz--timeline-marker {
    width: 70px;
    height: 70px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.huz--timeline-content {
    width: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.huz--timeline-content:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.huz--timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.huz--timeline-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.huz--timeline-item.huz--current .huz--timeline-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.08));
    border-color: rgba(16, 185, 129, 0.3);
}

/* Dealers Matter Section */
.huz--about-dealers-matter {
    background: #fff;
}

.huz--dealers-matter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.huz--dealers-matter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

.huz--dealers-matter-content .huz--lead-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.huz--dealers-matter-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.huz--dealers-benefits-list {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.huz--dealers-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #1a202c;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.huz--dealers-benefits-list li:last-child {
    border-bottom: none;
}

.huz--dealers-benefits-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

.huz--payment-methods-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.huz--payment-methods-showcase h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.huz--payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.huz--payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.huz--payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.huz--payment-icon svg {
    color: #fff;
}

.huz--payment-icon.huz--jazzcash {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
}

.huz--payment-icon.huz--easypaisa {
    background: linear-gradient(135deg, #10b981, #059669);
}

.huz--payment-icon.huz--bank {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.huz--payment-item span {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
}

.huz--payment-item:hover .huz--payment-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Section */
.huz--about-contact {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.03));
}

.huz--about-contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.huz--contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.huz--contact-info-section>p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.huz--contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.huz--contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.huz--contact-detail-item:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.huz--contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.huz--contact-icon svg {
    color: #10b981;
}

.huz--contact-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.huz--contact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
}

/* Contact Card */
.huz--contact-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.huz--contact-card-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 30px;
    text-align: center;
}

.huz--contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.huz--contact-card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.huz--contact-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.huz--contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.huz--contact-btn:hover {
    transform: translateX(5px);
}

.huz--contact-btn.huz--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.huz--contact-btn.huz--phone {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.huz--contact-btn.huz--website {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.huz--btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.huz--btn-icon svg {
    color: #fff;
}

.huz--btn-text {
    display: flex;
    flex-direction: column;
}

.huz--btn-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.huz--btn-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* About Page Responsive */
@media (max-width: 1024px) {

    .huz--about-junaid-grid,
    .huz--dealers-matter-grid,
    .huz--about-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .huz--trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .huz--services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .huz--about-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .huz--about-hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .huz--about-hero h1 {
        font-size: 2.2rem;
    }

    .huz--about-hero-subtitle {
        font-size: 1.2rem;
    }

    .huz--about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .huz--hero-stat {
        padding: 20px 15px;
    }

    .huz--hero-stat-number {
        font-size: 1.5rem;
    }

    .huz--trust-features-grid,
    .huz--services-grid {
        grid-template-columns: 1fr;
    }

    .huz--timeline-container {
        padding-left: 40px;
    }

    .huz--timeline-line {
        left: 20px;
    }

    .huz--timeline-marker {
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .huz--timeline-item,
    .huz--timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
    }

    .huz--timeline-content,
    .huz--timeline-item:nth-child(odd) .huz--timeline-content,
    .huz--timeline-item:nth-child(even) .huz--timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 20px;
        text-align: left;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .huz--contact-details-grid {
        grid-template-columns: 1fr;
    }

    .huz--section-header h2 {
        font-size: 1.8rem;
    }

    .huz--section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .huz--about-hero h1 {
        font-size: 1.8rem;
    }

    .huz--about-hero-desc {
        font-size: 1rem;
    }

    .huz--about-hero-cta {
        flex-direction: column;
    }

    .huz--about-hero-cta .huz--btn-primary,
    .huz--about-hero-cta .huz--btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .huz--about-visual-card {
        padding: 25px;
    }

    .huz--visual-card-header {
        flex-direction: column;
        text-align: center;
    }

    .huz--trust-feature-card,
    .huz--service-card {
        padding: 25px;
    }

    .huz--payment-icons {
        gap: 20px;
    }

    .huz--payment-icon {
        width: 60px;
        height: 60px;
    }
}