/* How to Apply Premium Styles */

.hta-content-section {
    background-color: #fff;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.hta-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* Process Steps */
.hta-process-container {
    margin-bottom: 100px;
}

.hta-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.hta-process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.hta-step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hta-step-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #a67c52;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.hta-step:hover .hta-step-icon {
    transform: translateY(-8px);
    border-color: #a67c52;
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(166, 124, 82, 0.15);
}

.hta-step-icon svg {
    width: 34px;
    height: 34px;
}

.hta-step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.hta-step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

/* Info Grid */
.hta-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.hta-info-col {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.hta-info-col:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #e0e0e0;
}

.hta-col-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.hta-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #a67c52;
}

/* Lists */
.hta-check-list, .hta-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hta-check-list li, .hta-notes-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
}

.hta-check-list .icon-check {
    width: 20px;
    height: 20px;
    color: #a67c52;
    flex-shrink: 0;
    background: #fdfaf5;
    border-radius: 50%;
    padding: 2px;
}

.hta-notes-list li svg {
    width: 22px;
    height: 22px;
    color: #a67c52;
    flex-shrink: 0;
}

.hta-doc-note {
    margin-top: 35px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid #1a1a1a;
}

.hta-doc-note svg {
    width: 28px;
    height: 28px;
    color: #1a1a1a;
    flex-shrink: 0;
}

/* Timeline */
.hta-timeline {
    position: relative;
    padding-left: 35px;
}

.hta-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 11px;
    width: 2px;
    background: #f0f0f0;
}

.hta-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.hta-timeline-icon {
    position: absolute;
    left: -35px;
    width: 24px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    border: 4px solid #fff;
}

.hta-timeline-icon svg {
    width: 10px;
    height: 10px;
}

.hta-timeline-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a67c52;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hta-timeline-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* International Box */
.hta-international-box {
    background: #01233c;
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.hta-international-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(166, 124, 82, 0.1);
    border-radius: 50%;
}

.hta-intl-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.hta-intl-header svg {
    width: 32px;
    height: 32px;
    color: #a67c52;
}

.hta-intl-header h4 {
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.hta-international-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 25px;
}

.hta-link-more {
    color: #a67c52;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

/* CTA Buttons */
.hta-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-hta-apply {
    background: #a67c52;
    color: #fff;
    padding: 18px 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.2);
}

.btn-hta-apply:hover {
    background: #8e6a45;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 124, 82, 0.3);
}

.btn-hta-interest {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.8;
}

.btn-hta-interest:hover {
    opacity: 1;
}

/* Help Section */
.hta-help-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #eef2f6;
}

.hta-help-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
}

.hta-help-icon {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hta-help-icon svg {
    width: 35px;
    height: 35px;
}

.hta-help-text h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hta-help-text p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.hta-help-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex: 1;
}

.hta-contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.hta-contact-item svg {
    width: 22px;
    height: 22px;
    color: #a67c52;
}

.btn-hta-contact {
    background: #fff;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hta-contact:hover {
    background: #1a1a1a;
    color: #fff;
}
