/* Custom site-wide styles */
:root {
    --hp-primary: #e25822;
    --hp-primary-700: #c74714;
}

/* Admin Form Styling */
.modern-input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.modern-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226, 88, 34, 0.15);
    outline: none;
}

.modern-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.modern-select:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226, 88, 34, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-label i {
    color: var(--hp-primary);
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: none;
    color: white;
    background: #8b5cf6;
    font-weight: 600;
}

.modern-input:focus + .input-group-text,
.modern-input:focus ~ .input-group-text {
    border-color: #8b5cf6;
    background: #7c3aed;
}

.btn-outline-primary {
    border: 2px solid #8b5cf6;
    color: white;
    background: #8b5cf6;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
}

/* Subscription Management Styles */
.plan-info {
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-weight: 600;
    color: #374151;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.amount-info, .price-info, .discount-info, .date-info, .transaction-info, .currency-info {
    display: flex;
    flex-direction: column;
}

.amount-value, .price-value, .discount-value, .date-value, .currency-value {
    font-weight: 600;
    color: #374151;
}

.transaction-id {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    word-break: break-all;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.action-buttons .btn {
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state i {
    color: #d1d5db;
    margin-bottom: 16px;
}

.empty-state h5 {
    color: #374151;
    margin-bottom: 8px;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Invoice Management Styles */
.sl-number {
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    min-width: 30px;
    text-align: center;
}

.invoice-code {
    display: flex;
    flex-direction: column;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.invoice-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.invoice-title {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
}

.invoice-date {
    color: #64748b;
    margin-bottom: 0;
    font-size: 14px;
}

.invoice-status {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.section-title {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.section-title i {
    color: var(--hp-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item label {
    font-weight: 600;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    color: #1e293b;
    font-weight: 500;
}

.amount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    font-size: 16px;
}

.payment-section {
    margin-top: 24px;
}

.payment-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.payment-header {
    margin-bottom: 20px;
}

.payment-title {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-subtitle {
    color: #a16207;
    margin-bottom: 0;
    font-size: 14px;
}

.payment-actions .btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.payment-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Real Invoice Design Styles */
.invoice-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.invoice-paper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.invoice-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
}

/* Invoice Header */
.invoice-header-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.company-details p {
    color: #34495e;
    margin-bottom: 5px;
    font-size: 14px;
}

.company-details i {
    color: #ff6b6b;
    width: 16px;
}

.invoice-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: right;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.invoice-details {
    text-align: right;
}

.invoice-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.invoice-detail-item .label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 14px;
}

.invoice-detail-item .value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 14px;
}

.status-paid {
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-unpaid {
    background: linear-gradient(135deg, #ff6b6b, #ff9a56);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bill To Section */
.bill-to-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.customer-email {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 0;
}

.payment-terms p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Invoice Items Table */
.invoice-items-section {
    margin-bottom: 40px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.invoice-table thead {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.invoice-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invoice-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.service-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.service-description {
    color: #7f8c8d;
    font-size: 14px;
}

.item-amount {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
    text-align: right;
}

/* Invoice Total */
.invoice-total-section {
    margin-bottom: 40px;
}

.total-breakdown {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.total-line:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.total-label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 14px;
}

.total-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 14px;
}

.total-final {
    font-size: 18px;
    font-weight: 900;
    color: #2c3e50;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #dee2e6 !important;
}

/* Payment Section */
.payment-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5, #f0f9ff);
    border-radius: 12px;
    border: 2px solid #ff6b6b;
    text-align: center;
}

.payment-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-title i {
    color: #ff6b6b;
}

.payment-message {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-pay-now {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #feca57 100%);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    color: white;
    text-decoration: none;
    padding: 0;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
}

.btn-pay-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

.btn-pay-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-pay-now:hover::before {
    left: 100%;
}

.btn-pay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    position: relative;
    z-index: 2;
}

.btn-pay-content i {
    font-size: 1.2rem;
}

.btn-pay-content span {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Payment Success Section */
.payment-success-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border-radius: 12px;
    border: 2px solid #00d4aa;
    text-align: center;
}

.success-notice i {
    font-size: 3rem;
    color: #00d4aa;
    margin-bottom: 15px;
}

.success-notice h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-notice p {
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 0;
}

/* Invoice Footer */
.invoice-footer {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    color: #7f8c8d;
}

.footer-info h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-contact strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .invoice-document {
        padding: 10px;
    }
    
    .invoice-paper {
        padding: 20px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .invoice-title {
        font-size: 2rem;
        text-align: left;
        margin-top: 20px;
    }
    
    .invoice-details {
        text-align: left;
    }
    
    .btn-pay-content {
        flex-direction: column;
        gap: 8px;
        padding: 15px 25px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Modern Back-to-Top Button - New Design */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(45deg, #e25822 0%, #ff6b35 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(226, 88, 34, 0.4), 
                0 0 0 0 rgba(226, 88, 34, 0.7) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 1000 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    outline: none !important;
    backdrop-filter: blur(10px) !important;
    animation: backToTopPulse 2s ease-in-out infinite !important;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.15) !important;
    background: linear-gradient(45deg, #ff6b35 0%, #e25822 100%) !important;
    box-shadow: 0 15px 40px rgba(226, 88, 34, 0.6), 
                0 0 0 15px rgba(226, 88, 34, 0.1) !important;
    color: white !important;
    text-decoration: none !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #e25822, #ff6b35, #ff8c42, #ffa726);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top::after {
    display: none !important;
}

.back-to-top:focus {
    outline: none !important;
    box-shadow: 0 10px 30px rgba(226, 88, 34, 0.4), 
                0 0 0 0 rgba(226, 88, 34, 0.7) !important;
}

.back-to-top:active {
    outline: none !important;
    transform: translateY(-5px) scale(1.05) !important;
}

.back-to-top i {
    position: relative;
    z-index: 2;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes backToTopPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(226, 88, 34, 0.4), 
                    0 0 0 0 rgba(226, 88, 34, 0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(226, 88, 34, 0.4), 
                    0 0 0 10px rgba(226, 88, 34, 0.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Back-to-Top Button */
@media (max-width: 768px) {
    .back-to-top {
        width: 60px !important;
        height: 60px !important;
        bottom: 15px !important;
        right: 15px !important;
        font-size: 20px !important;
        border-width: 2px !important;
    }
    
    .back-to-top i {
        font-size: 20px;
    }
    
    .back-to-top:hover {
        transform: translateY(-6px) scale(1.1) !important;
    }
}

.invoice-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #feca57 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.invoice-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.invoice-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    color: white;
}

.invoice-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.invoice-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.invoice-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.invoice-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.invoice-amount-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.invoice-status-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.status-icon.success {
    background: linear-gradient(135deg, #00d4aa, #00a8cc, #00d4aa);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4), 0 0 0 4px rgba(0, 212, 170, 0.1);
    animation: pulseSuccess 2s ease-in-out infinite;
}

.status-icon.pending {
    background: linear-gradient(135deg, #ff9a56, #ff6b6b, #ff9a56);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 4px rgba(255, 107, 107, 0.1);
    animation: pulsePending 2s ease-in-out infinite;
}

@keyframes pulseSuccess {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4), 0 0 0 4px rgba(0, 212, 170, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 212, 170, 0.6), 0 0 0 8px rgba(0, 212, 170, 0.2); }
}

@keyframes pulsePending {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4), 0 0 0 4px rgba(255, 107, 107, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6), 0 0 0 8px rgba(255, 107, 107, 0.2); }
}

.status-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.info-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card-body {
    padding: 24px;
}

.info-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item-modern:last-child {
    border-bottom: none;
}

.info-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.info-value {
    font-weight: 600;
    color: #1e293b;
    text-align: right;
}

.amount-highlight {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: rainbowGlow 3s ease-in-out infinite;
}

@keyframes rainbowGlow {
    0%, 100% { 
        background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    33% { 
        background: linear-gradient(135deg, #4ecdc4, #45b7d1, #96ceb4);
        box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    }
    66% { 
        background: linear-gradient(135deg, #45b7d1, #96ceb4, #feca57);
        box-shadow: 0 4px 15px rgba(69, 183, 209, 0.3);
    }
}

.status-badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge-modern.success {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 168, 204, 0.2));
    color: #00a8cc;
    border: 2px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
}

.status-badge-modern.pending {
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.2), rgba(255, 107, 107, 0.2));
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.payment-action-section {
    margin-top: 40px;
}

.payment-action-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.payment-action-bg {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #feca57 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 0;
}

.payment-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.payment-action-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
}

.payment-action-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.payment-action-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.payment-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.feature-item i {
    font-size: 16px;
}

.btn-payment-modern {
    display: block;
    background: white;
    color: #1e293b;
    text-decoration: none;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-payment-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #1e293b;
}

.btn-payment-content {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 16px;
}

.btn-payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    }
}

.btn-payment-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-payment-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-payment-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .invoice-hero-title {
        font-size: 2.5rem;
    }
    
    .amount-value {
        font-size: 2rem;
    }
    
    .payment-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-payment-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-payment-text {
        text-align: center;
    }
}

/* Topbar/Nav modern look */
.topbar-modern { background: linear-gradient(180deg, rgba(226,88,34,.15) 0%, #0b1220 45%, #0a1020 100%); }
.nav-modern { background: rgba(6, 13, 26, 0.82); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(226,88,34,.25); }
.nav-modern .navbar-nav .nav-link { position: relative; transition: color .2s ease, opacity .2s ease; }
.nav-modern .navbar-nav .nav-link.active, .nav-modern .navbar-nav .nav-link:hover { color: #ffffff; }
.nav-modern .nav-link-underline::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--hp-primary); transition: width .25s ease; }
.nav-modern .nav-link-underline:hover::after, .nav-modern .nav-link-underline.active::after { width: 100%; }
.btn-elevated { box-shadow: 0 6px 14px rgba(226,88,34,.35); }
.dropdown-menu { border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

/* Footer modern look (dark) */
.footer-modern { background: linear-gradient(180deg, #0b1220 0%, #0a1020 35%, #060d1a 100%); }
.footer-divider svg { display: block; width: 100%; height: 60px; }
.footer-link:hover { opacity: .9; transform: translateX(2px); }
.footer-social .btn:hover { opacity: .9; transform: translateY(-2px); }
.footer-card { background: rgba(255,255,255,0.02); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
.footer-small { color: rgba(255,255,255,.7); }

/* Footer light theme (like screenshot) */
.footer-light { background: #f6f8fb; color: #1f2b44; }
.footer-light .footer-title { position: relative; font-weight: 800; color: #1f2b44; }
.footer-light .footer-title:after { content: ""; display: block; width: 36px; height: 3px; margin-top: 8px; background: var(--hp-primary); border-radius: 2px; }
.footer-light .footer-text { color: #5d6b7a; }
.footer-light .footer-link { color: #2a3342; text-decoration: none; }
.footer-light .footer-link:hover { color: var(--hp-primary); }
.footer-social-pill a { width: 38px; height: 38px; border-radius: 50px; background: #fff; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; border: 1px solid #e7e9ee; color: #2a3342; transition: transform .15s ease, box-shadow .15s ease; }
.footer-social-pill a:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.08); color: var(--hp-primary); border-color: rgba(226,88,34,.25); }
.footer-bottom { background: #eef2f6; color: #5d6b7a; font-size: 14px; }
.footer-bottom a { color: #1f2b44; text-decoration: none; }
.footer-bottom a:hover { color: var(--hp-primary); }

/* Auth/Login page base */
.form-control:focus { border-color: var(--hp-primary) !important; box-shadow: 0 0 0 .2rem rgba(226, 88, 34, .15) !important; }
.input-group .toggle-password { cursor: pointer; user-select: none; border-left: 0 !important; color: #6b7b86; }

/* Orange → Black hero for auth */
.auth-hero { background: linear-gradient(135deg, rgba(226,88,34,0.92) 0%, rgba(11,18,32,0.95) 70%), url('/images/login-bg.jpg') center/cover no-repeat; }

/* Centered login canvas with floating shapes */
.login-canvas { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 32px 16px; overflow: hidden; }
.login-card-centered { position: relative; z-index: 2; width: 100%; max-width: 720px; }
.shape { position: absolute; z-index: 1; opacity: .25; filter: blur(.0px); animation-timing-function: ease-in-out; }
.shape.round { border-radius: 50%; }
shape.squircle { border-radius: 26px; }
.shape-1 { width: 140px; height: 140px; background: rgba(179,205,255,.6); top: 5%; left: 8%; animation: floatA 9s infinite alternate; }
.shape-2 { width: 110px; height: 110px; background: rgba(226,88,34,.18); top: 18%; right: 10%; animation: floatB 12s infinite alternate; }
.shape-3 { width: 90px; height: 90px; background: rgba(255,230,200,.5); bottom: 12%; left: 15%; animation: floatC 11s infinite alternate; }
.shape-4 { width: 100px; height: 100px; background: rgba(200,240,220,.45); bottom: 20%; right: 14%; animation: floatA 10s infinite alternate; }
.shape-5 { width: 70px; height: 70px; background: rgba(240,200,255,.45); top: 35%; left: 42%; animation: floatB 13s infinite alternate; }
.shape-6 { width: 60px; height: 60px; background: rgba(226,88,34,.12); bottom: 8%; right: 40%; animation: floatC 8s infinite alternate; }
.shape-7 { width: 80px; height: 80px; background: rgba(255,255,255,.25); top: 55%; right: 60%; animation: floatA 14s infinite alternate; }

@keyframes floatA { from { transform: translateY(0) translateX(0) rotate(0deg); } to { transform: translateY(-18px) translateX(8px) rotate(8deg); } }
@keyframes floatB { from { transform: translateY(0) translateX(0) rotate(0deg); } to { transform: translateY(16px) translateX(-10px) rotate(-6deg); } }
@keyframes floatC { from { transform: translateY(0) translateX(0) rotate(0deg); } to { transform: translateY(-12px) translateX(12px) rotate(10deg); } }

/* Beautiful login card */
.auth-card { border: 1px solid rgba(226,88,34,.12); border-radius: 16px; box-shadow: 0 18px 44px rgba(0,0,0,.12); background: #ffffff; }
.login-header { text-align: center; margin-bottom: 8px; }
.login-badge { width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(226,88,34,.12); color: var(--hp-primary); box-shadow: 0 8px 22px rgba(226,88,34,.25); }
.login-title { font-weight: 800; color: #1f2b44; margin-top: 10px; }
.login-subtitle { color: #6b7b86; margin-bottom: 6px; }
.input-group-text { background: #f6f7f9; border-color: #e6e8eb; color: #6b7b86; transition: color .2s ease, border-color .2s ease; }
.form-control { border-radius: 12px; height: 46px; border-color: #e6e8eb; background: #fff; transition: box-shadow .2s ease, border-color .2s ease; }
.form-control::placeholder { color: #9aa6b2; }
.login-input .input-group:focus-within .input-group-text { color: var(--hp-primary); border-color: var(--hp-primary); }
.login-input .input-group:focus-within .form-control { border-color: var(--hp-primary); box-shadow: 0 0 0 .2rem rgba(226, 88, 34, .15); }
.input-group .toggle-password:hover { color: var(--hp-primary); }
.is-invalid.form-control, .form-control.is-invalid { border-color: #dc3545 !important; box-shadow: 0 0 0 .2rem rgba(220,53,69,.15) !important; }
/* Ensure server-side validation messages are visible */
.auth-card .invalid-feedback { display: block; }

.hr-text { position: relative; text-align: center; margin: 16px 0 0; color: #95a0ab; }
.hr-text::before, .hr-text::after { content: ""; position: absolute; top: 50%; width: 38%; height: 1px; background: #e6e8eb; }
.hr-text::before { left: 0; }
.hr-text::after { right: 0; }

/* Primary color overrides */
.bg-dark { background-color: var(--hp-primary) !important; }
.btn-primary { color: #ffffff; background-color: var(--hp-primary); border-color: var(--hp-primary); }
.btn-primary:hover { background-color: var(--hp-primary-700); border-color: var(--hp-primary-700); }
.btn-primary:focus { box-shadow: 0 0 0 .25rem rgba(226,88,34,.25); }
.text-primary { color: var(--hp-primary) !important; }
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: var(--hp-primary) !important; }
.bg-primary { background-color: var(--hp-primary) !important; }

/* Responsive helpers */
@media (max-width: 575.98px) { .login-card-centered { max-width: 100%; } }

/* Effects */
@keyframes blink-shadow {
    0% { box-shadow: 0px 0px 15px rgba(226, 88, 34, 0.8); }
    50% { box-shadow: 0px 0px 25px rgba(226, 88, 34, 1); }
    100% { box-shadow: 0px 0px 15px rgba(226, 88, 34, 0.8); }
}

.btn-nav-outline { background: #ffffff; border: 2px solid var(--hp-primary); color: var(--hp-primary); }
.btn-nav-outline:hover { background: rgba(226,88,34,.06); color: var(--hp-primary-700); border-color: var(--hp-primary-700); }
/* keep success login button as solid */

/* Contact Page Styles */
.contact-hero { 
    background: linear-gradient(135deg, rgba(226,88,34,0.92) 0%, rgba(11,18,32,0.95) 70%), url('/images/contact-bg.jpg') center/cover no-repeat;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-badge { 
    width: 80px; 
    height: 80px; 
    border-radius: 20px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(255,255,255,0.15); 
    color: #ffffff; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    font-size: 32px;
}

.contact-title { 
    font-weight: 800; 
    color: #ffffff; 
    margin-bottom: 16px;
    font-size: 3rem;
}

.contact-subtitle { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-canvas { 
    position: relative; 
    min-height: 60vh; 
    padding: 60px 0; 
    overflow: hidden; 
    background: #f8f9fa;
}

.contact-card, .contact-info-card { 
    border: 1px solid rgba(226,88,34,.12); 
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,.08); 
    background: #ffffff; 
    padding: 40px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-header { 
    text-align: center; 
    margin-bottom: 32px; 
}

.contact-badge-small { 
    width: 60px; 
    height: 60px; 
    border-radius: 16px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(226,88,34,.12); 
    color: var(--hp-primary); 
    box-shadow: 0 8px 22px rgba(226,88,34,.25);
    margin-bottom: 16px;
    font-size: 24px;
}

.contact-card-title { 
    font-weight: 800; 
    color: #1f2b44; 
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.contact-card-subtitle { 
    color: #6b7b86; 
    margin-bottom: 0;
}

.contact-form { 
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .contact-input { 
    margin-bottom: 24px; 
}

.contact-form .input-group { 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.contact-form .input-group-text { 
    background: #f6f7f9; 
    border-color: #e6e8eb; 
    color: #6b7b86; 
    transition: color .2s ease, border-color .2s ease;
    border-right: none;
}

.contact-form .form-control { 
    border-radius: 0 12px 12px 0; 
    height: 50px; 
    border-color: #e6e8eb; 
    background: #fff; 
    transition: box-shadow .2s ease, border-color .2s ease;
    border-left: none;
}

.contact-form .form-control::placeholder { 
    color: #9aa6b2; 
}

.contact-form .input-group:focus-within .input-group-text { 
    color: var(--hp-primary); 
    border-color: var(--hp-primary); 
}

.contact-form .input-group:focus-within .form-control { 
    border-color: var(--hp-primary); 
    box-shadow: 0 0 0 .2rem rgba(226, 88, 34, .15); 
}

.contact-form textarea.form-control { 
    border-radius: 12px; 
    border-left: 1px solid #e6e8eb;
    min-height: 120px;
    flex: 1;
    resize: vertical;
}

.contact-form .input-group:focus-within textarea.form-control { 
    border-left-color: var(--hp-primary);
}

.contact-submit { 
    width: 100%; 
    height: 50px; 
    border-radius: 12px; 
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    transition: all .3s ease;
}

.contact-submit:hover { 
    background: var(--hp-primary-700); 
    border-color: var(--hp-primary-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226,88,34,.3);
}

.contact-alert { 
    border-radius: 12px; 
    border: none;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
    margin-bottom: 24px;
}

.contact-info-list { 
    margin-bottom: 32px; 
}

.contact-info-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 24px; 
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all .3s ease;
}

.contact-info-item:hover { 
    background: rgba(226,88,34,.05);
    transform: translateX(4px);
}

.contact-info-icon { 
    width: 50px; 
    height: 50px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(226,88,34,.12); 
    color: var(--hp-primary);
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-info-content h5 { 
    font-weight: 700; 
    color: #1f2b44; 
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.contact-info-content p { 
    color: #6b7b86; 
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-info-content a { 
    color: var(--hp-primary); 
    text-decoration: none;
    transition: color .2s ease;
}

.contact-info-content a:hover { 
    color: var(--hp-primary-700); 
}

.contact-social { 
    text-align: center; 
    padding-top: 24px; 
    border-top: 1px solid #e6e8eb;
}

.contact-social h5 { 
    font-weight: 700; 
    color: #1f2b44; 
    margin-bottom: 16px;
}

.contact-social-links { 
    display: flex; 
    justify-content: center; 
    gap: 12px;
}

.contact-social-link { 
    width: 45px; 
    height: 45px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #f6f7f9; 
    color: #6b7b86;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 18px;
}

.contact-social-link:hover { 
    background: var(--hp-primary); 
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226,88,34,.3);
}

/* Contact page responsive */
@media (max-width: 991.98px) {
    .contact-title { font-size: 2.5rem; }
    .contact-card, .contact-info-card { padding: 30px; }
}

@media (max-width: 575.98px) {
    .contact-hero { padding: 60px 0 40px; }
    .contact-title { font-size: 2rem; }
    .contact-subtitle { font-size: 1rem; }
    .contact-card, .contact-info-card { padding: 24px; }
    .contact-badge { width: 60px; height: 60px; font-size: 24px; }
    .contact-badge-small { width: 50px; height: 50px; font-size: 20px; }
    .contact-info-item { padding: 16px; }
    .contact-info-icon { width: 40px; height: 40px; font-size: 16px; }
}

/* Contact Page Layout V2 - Alternative Design */
.contact-hero-v2 {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card-v2:hover::before {
    transform: scaleX(1);
}

.contact-info-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.contact-info-icon-v2 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.2));
    color: var(--hp-primary);
    margin-bottom: 24px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.contact-info-card-v2:hover .contact-info-icon-v2 {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    color: #ffffff;
    transform: scale(1.1);
}

.contact-info-card-v2 h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.contact-info-card-v2 p {
    color: #6b7b86;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card-v2 a {
    color: var(--hp-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card-v2 a:hover {
    color: var(--hp-primary-700);
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-card-v2 {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.contact-form-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form-v2 .form-floating {
    margin-bottom: 20px;
}

.contact-form-v2 .form-control {
    border: 2px solid #e6e8eb;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form-v2 .form-control:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226, 88, 34, 0.15);
    background: #ffffff;
}

.contact-form-v2 .form-floating > label {
    color: #6b7b86;
    font-weight: 500;
}

.contact-form-v2 .form-control:focus ~ label,
.contact-form-v2 .form-control:not(:placeholder-shown) ~ label {
    color: var(--hp-primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-submit-v2 {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.contact-submit-v2:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.contact-alert-v2 {
    border-radius: 12px;
    border: none;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
    margin-bottom: 30px;
    padding: 15px 20px;
}

.contact-social-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-social-section h3 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2rem;
}

.contact-social-section p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-social-links-v2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-social-link-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    color: #6b7b86;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.contact-social-link-v2:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226,88,34,0.3);
    border-color: var(--hp-primary);
}

.contact-social-link-v2 i {
    font-size: 20px;
}

/* Contact V2 Responsive */
@media (max-width: 991.98px) {
    .contact-hero-title { font-size: 3rem; }
    .contact-form-card-v2 { padding: 40px; }
    .contact-info-card-v2 { padding: 30px 20px; }
}

@media (max-width: 767.98px) {
    .contact-hero-v2 { padding: 80px 0 60px; }
    .contact-hero-title { font-size: 2.5rem; }
    .contact-hero-subtitle { font-size: 1.1rem; }
    .contact-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .contact-info-section, .contact-form-section, .contact-social-section { padding: 60px 0; }
    .contact-form-card-v2 { padding: 30px; }
    .contact-social-links-v2 { gap: 15px; }
    .contact-social-link-v2 { padding: 12px 20px; }
}

@media (max-width: 575.98px) {
    .contact-hero-title { font-size: 2rem; }
    .contact-hero-subtitle { font-size: 1rem; }
    .contact-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .contact-form-card-v2 { padding: 25px; }
    .contact-info-card-v2 { padding: 25px 15px; }
    .contact-info-icon-v2 { width: 60px; height: 60px; font-size: 24px; }
    .contact-social-links-v2 { flex-direction: column; align-items: center; }
    .contact-social-link-v2 { width: 200px; justify-content: center; }
}

/* Manual Page Styles */
.manual-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.manual-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="manual-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23manual-grain)"/></svg>');
    opacity: 0.3;
}

.manual-hero-content {
    position: relative;
    z-index: 2;
}

.manual-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.manual-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.manual-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.manual-video-section {
    padding: 80px 0;
    background: #ffffff;
}

.manual-video-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.manual-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.manual-video-header {
    text-align: center;
    margin-bottom: 40px;
}

.manual-video-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 20px;
    font-size: 32px;
}

.manual-video-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.manual-video-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.manual-video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.manual-video-iframe {
    border: none;
    border-radius: 15px;
}

.manual-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.manual-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.manual-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.manual-feature-card:hover::before {
    transform: scaleX(1);
}

.manual-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.manual-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.2));
    color: var(--hp-primary);
    margin-bottom: 24px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.manual-feature-card:hover .manual-feature-icon {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    color: #ffffff;
    transform: scale(1.1);
}

.manual-feature-card h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.manual-feature-card p {
    color: #6b7b86;
    margin-bottom: 24px;
    line-height: 1.6;
}

.manual-feature-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.manual-feature-steps .step {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(226,88,34,0.2);
}

.manual-description-section {
    padding: 80px 0;
    background: #ffffff;
}

.manual-description-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.manual-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.manual-description-header {
    text-align: center;
    margin-bottom: 30px;
}

.manual-description-badge {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 20px;
    font-size: 28px;
}

.manual-description-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 0;
    font-size: 2rem;
}

.manual-description-content {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.manual-description-editor {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e6e8eb;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.manual-description-editor h1,
.manual-description-editor h2,
.manual-description-editor h3,
.manual-description-editor h4,
.manual-description-editor h5,
.manual-description-editor h6 {
    color: #1f2b44;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
}

.manual-description-editor h1:first-child,
.manual-description-editor h2:first-child,
.manual-description-editor h3:first-child,
.manual-description-editor h4:first-child,
.manual-description-editor h5:first-child,
.manual-description-editor h6:first-child {
    margin-top: 0;
}

.manual-description-editor p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.manual-description-editor ul,
.manual-description-editor ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.manual-description-editor li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.manual-description-editor strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.manual-description-editor em {
    color: #5d6b7a;
    font-style: italic;
}

.manual-description-editor a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.manual-description-editor a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.manual-description-editor blockquote {
    border-left: 4px solid var(--hp-primary);
    background: rgba(226,88,34,0.05);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #5d6b7a;
}

.manual-description-editor code {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.manual-description-editor pre {
    background: #1f2b44;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e6e8eb;
}

.manual-description-editor pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
}

.manual-description-editor table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.manual-description-editor th,
.manual-description-editor td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e6e8eb;
}

.manual-description-editor th {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    font-weight: 700;
}

.manual-description-editor tr:hover {
    background: rgba(226,88,34,0.02);
}

.manual-tips-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.manual-tips-header {
    text-align: center;
    margin-bottom: 50px;
}

.manual-tips-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.manual-tips-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.manual-tip-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.manual-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(226,88,34,0.15);
}

.manual-tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.2));
    color: var(--hp-primary);
    margin-bottom: 20px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.manual-tip-card:hover .manual-tip-icon {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    color: #ffffff;
    transform: scale(1.1);
}

.manual-tip-card h5 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.manual-tip-card p {
    color: #6b7b86;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.manual-support-section {
    padding: 80px 0;
    background: #ffffff;
}

.manual-support-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.manual-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.manual-support-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.manual-support-card h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.manual-support-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.manual-support-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.manual-support-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.manual-support-btn.btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.manual-support-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.manual-support-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
}

.manual-support-btn.btn-outline-primary:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

/* Manual page responsive */
@media (max-width: 991.98px) {
    .manual-hero-title { font-size: 3rem; }
    .manual-video-card, .manual-description-card, .manual-support-card { padding: 40px; }
    .manual-feature-card { padding: 30px 20px; }
}

@media (max-width: 767.98px) {
    .manual-hero { padding: 80px 0 60px; }
    .manual-hero-title { font-size: 2.5rem; }
    .manual-hero-subtitle { font-size: 1.1rem; }
    .manual-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .manual-video-section, .manual-features-section, .manual-description-section, .manual-tips-section, .manual-support-section { padding: 60px 0; }
    .manual-video-card, .manual-description-card, .manual-support-card { padding: 30px; }
    .manual-support-actions { flex-direction: column; align-items: center; }
    .manual-support-btn { width: 200px; justify-content: center; }
}

@media (max-width: 575.98px) {
    .manual-hero-title { font-size: 2rem; }
    .manual-hero-subtitle { font-size: 1rem; }
    .manual-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .manual-video-card, .manual-description-card, .manual-support-card { padding: 25px; }
    .manual-feature-card { padding: 25px 15px; }
    .manual-tip-card { padding: 25px 20px; }
    .manual-feature-icon { width: 60px; height: 60px; font-size: 24px; }
    .manual-tip-icon { width: 50px; height: 50px; font-size: 20px; }
}

/* Benefits Page Styles */
.benefits-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.benefits-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-grain)"/></svg>');
    opacity: 0.3;
}

.benefits-hero-content {
    position: relative;
    z-index: 2;
}

.benefits-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.benefits-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.benefits-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-content-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.benefits-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.benefits-content-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-content-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 20px;
    font-size: 32px;
}

.benefits-content-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 0;
    font-size: 2.2rem;
}

.benefits-content-body {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.benefits-content-editor {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e6e8eb;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.benefits-content-editor h1,
.benefits-content-editor h2,
.benefits-content-editor h3,
.benefits-content-editor h4,
.benefits-content-editor h5,
.benefits-content-editor h6 {
    color: #1f2b44;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
}

.benefits-content-editor h1:first-child,
.benefits-content-editor h2:first-child,
.benefits-content-editor h3:first-child,
.benefits-content-editor h4:first-child,
.benefits-content-editor h5:first-child,
.benefits-content-editor h6:first-child {
    margin-top: 0;
}

.benefits-content-editor p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.benefits-content-editor ul,
.benefits-content-editor ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.benefits-content-editor li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.benefits-content-editor strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.benefits-content-editor em {
    color: #5d6b7a;
    font-style: italic;
}

.benefits-content-editor a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.benefits-content-editor a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.benefits-content-editor blockquote {
    border-left: 4px solid var(--hp-primary);
    background: rgba(226,88,34,0.05);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #5d6b7a;
}

.benefits-content-editor code {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.benefits-content-editor pre {
    background: #1f2b44;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e6e8eb;
}

.benefits-content-editor pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
}

.benefits-content-editor table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefits-content-editor th,
.benefits-content-editor td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e6e8eb;
}

.benefits-content-editor th {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    font-weight: 700;
}

.benefits-content-editor tr:hover {
    background: rgba(226,88,34,0.02);
}

.benefits-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.benefits-grid-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.2));
    color: var(--hp-primary);
    margin-bottom: 24px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    color: #ffffff;
    transform: scale(1.1);
}

.benefit-card h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #6b7b86;
    margin-bottom: 0;
    line-height: 1.6;
}

.benefits-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-cta-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.benefits-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.benefits-cta-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.benefits-cta-card h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.benefits-cta-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefits-cta-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.benefits-cta-btn.btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.benefits-cta-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.benefits-cta-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
}

.benefits-cta-btn.btn-outline-primary:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

/* Benefits page responsive */
@media (max-width: 991.98px) {
    .benefits-hero-title { font-size: 3rem; }
    .benefits-content-card, .benefits-cta-card { padding: 40px; }
    .benefit-card { padding: 30px 20px; }
}

@media (max-width: 767.98px) {
    .benefits-hero { padding: 80px 0 60px; }
    .benefits-hero-title { font-size: 2.5rem; }
    .benefits-hero-subtitle { font-size: 1.1rem; }
    .benefits-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .benefits-content-section, .benefits-grid-section, .benefits-cta-section { padding: 60px 0; }
    .benefits-content-card, .benefits-cta-card { padding: 30px; }
    .benefits-cta-actions { flex-direction: column; align-items: center; }
    .benefits-cta-btn { width: 200px; justify-content: center; }
}

@media (max-width: 575.98px) {
    .benefits-hero-title { font-size: 2rem; }
    .benefits-hero-subtitle { font-size: 1rem; }
    .benefits-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .benefits-content-card, .benefits-cta-card { padding: 25px; }
    .benefit-card { padding: 25px 15px; }
    .benefit-icon { width: 60px; height: 60px; font-size: 24px; }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grain)"/></svg>');
    opacity: 0.3;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.faq-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-description-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-description-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.faq-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.faq-description-content {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.faq-description-content p {
    margin-bottom: 0;
}

.faq-items-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-items-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-items-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.faq-items-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-item-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.faq-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item-card:hover::before {
    transform: scaleX(1);
}

.faq-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.faq-item-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
}

.faq-item-header:hover {
    background: rgba(226,88,34,0.02);
}

.faq-item-number {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.2));
    color: var(--hp-primary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item-question {
    flex: 1;
}

.faq-item-question h5 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-header[aria-expanded="true"] .faq-item-icon {
    background: var(--hp-primary);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-item-answer {
    border-top: 1px solid rgba(226,88,34,0.1);
    background: rgba(226,88,34,0.02);
}

.faq-answer-content {
    padding: 25px 30px;
    color: #6b7b86;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 16px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer-content strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.faq-answer-content a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-answer-content a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.faq-support-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-support-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.faq-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.faq-support-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.faq-support-card h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.faq-support-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-support-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-support-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.faq-support-btn.btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.faq-support-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.faq-support-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
}

.faq-support-btn.btn-outline-primary:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

/* FAQ page responsive */
@media (max-width: 991.98px) {
    .faq-hero-title { font-size: 3rem; }
    .faq-description-card, .faq-support-card { padding: 40px; }
    .faq-item-header { padding: 20px 25px; }
    .faq-answer-content { padding: 20px 25px; }
}

@media (max-width: 767.98px) {
    .faq-hero { padding: 80px 0 60px; }
    .faq-hero-title { font-size: 2.5rem; }
    .faq-hero-subtitle { font-size: 1.1rem; }
    .faq-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .faq-description-section, .faq-items-section, .faq-support-section { padding: 60px 0; }
    .faq-description-card, .faq-support-card { padding: 30px; }
    .faq-support-actions { flex-direction: column; align-items: center; }
    .faq-support-btn { width: 200px; justify-content: center; }
    .faq-item-header { padding: 20px; gap: 15px; }
    .faq-answer-content { padding: 20px; }
    .faq-item-number { width: 40px; height: 40px; font-size: 1rem; }
    .faq-item-icon { width: 35px; height: 35px; }
}

@media (max-width: 575.98px) {
    .faq-hero-title { font-size: 2rem; }
    .faq-hero-subtitle { font-size: 1rem; }
    .faq-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .faq-description-card, .faq-support-card { padding: 25px; }
    .faq-item-header { padding: 15px; gap: 12px; }
    .faq-answer-content { padding: 15px; }
    .faq-item-number { width: 35px; height: 35px; font-size: 0.9rem; }
    .faq-item-icon { width: 30px; height: 30px; }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.about-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-text-content {
    padding-left: 30px;
}

.about-description-editor {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-description-editor h1,
.about-description-editor h2,
.about-description-editor h3,
.about-description-editor h4,
.about-description-editor h5,
.about-description-editor h6 {
    color: #1f2b44;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
}

.about-description-editor h1:first-child,
.about-description-editor h2:first-child,
.about-description-editor h3:first-child,
.about-description-editor h4:first-child,
.about-description-editor h5:first-child,
.about-description-editor h6:first-child {
    margin-top: 0;
}

.about-description-editor p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-description-editor ul,
.about-description-editor ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.about-description-editor li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-description-editor strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.about-description-editor em {
    color: #5d6b7a;
    font-style: italic;
}

.about-description-editor a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.about-description-editor a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.about-mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-mission-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.about-mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.about-mission-editor {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-mission-editor h1,
.about-mission-editor h2,
.about-mission-editor h3,
.about-mission-editor h4,
.about-mission-editor h5,
.about-mission-editor h6 {
    color: #1f2b44;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
}

.about-mission-editor h1:first-child,
.about-mission-editor h2:first-child,
.about-mission-editor h3:first-child,
.about-mission-editor h4:first-child,
.about-mission-editor h5:first-child,
.about-mission-editor h6:first-child {
    margin-top: 0;
}

.about-mission-editor p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-mission-editor ul,
.about-mission-editor ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.about-mission-editor li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-mission-editor strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.about-mission-editor a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.about-mission-editor a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.about-team-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-team-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-team-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.about-team-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.team-member-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-image {
    border-color: var(--hp-primary);
    transform: scale(1.05);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.team-member-role {
    color: var(--hp-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.team-member-description {
    color: #6b7b86;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-cta-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.about-cta-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.about-cta-card h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.about-cta-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.about-cta-btn.btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.about-cta-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.about-cta-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
}

.about-cta-btn.btn-outline-primary:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

/* About page responsive */
@media (max-width: 991.98px) {
    .about-hero-title { font-size: 3rem; }
    .about-text-content { padding-left: 0; margin-top: 30px; }
    .about-mission-content, .about-cta-card { padding: 40px; }
    .team-member-card { padding: 25px; }
}

@media (max-width: 767.98px) {
    .about-hero { padding: 80px 0 60px; }
    .about-hero-title { font-size: 2.5rem; }
    .about-hero-subtitle { font-size: 1.1rem; }
    .about-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .about-content-section, .about-mission-section, .about-team-section, .about-cta-section { padding: 60px 0; }
    .about-mission-content, .about-cta-card { padding: 30px; }
    .about-cta-actions { flex-direction: column; align-items: center; }
    .about-cta-btn { width: 200px; justify-content: center; }
    .team-member-image { width: 100px; height: 100px; }
}

@media (max-width: 575.98px) {
    .about-hero-title { font-size: 2rem; }
    .about-hero-subtitle { font-size: 1rem; }
    .about-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .about-mission-content, .about-cta-card { padding: 25px; }
    .team-member-card { padding: 20px; }
    .team-member-image { width: 80px; height: 80px; }
    .about-image { height: 300px; }
}

/* All News Page Styles */
.news-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="news-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23news-grain)"/></svg>');
    opacity: 0.3;
}

.news-hero-content {
    position: relative;
    z-index: 2;
}

.news-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.news-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.news-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.news-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-grid-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.news-grid-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.news-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(226,88,34,0.9);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.news-date-badge i {
    font-size: 0.8rem;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #6b7b86;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-actions {
    display: flex;
    justify-content: flex-end;
}

.news-read-more {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(226,88,34,0.08);
}

.news-read-more:hover {
    color: var(--hp-primary-700);
    background: rgba(226,88,34,0.15);
    transform: translateX(5px);
}

.news-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

.no-news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.no-news-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.no-news-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    font-size: 40px;
    margin-bottom: 30px;
}

.no-news-card h3 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.no-news-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.no-news-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.no-news-btn:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.newsletter-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.newsletter-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.newsletter-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.newsletter-card h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.newsletter-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    flex: 1;
}

.newsletter-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.newsletter-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226,88,34,0.25);
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

/* All News page responsive */
@media (max-width: 991.98px) {
    .news-hero-title { font-size: 3rem; }
    .news-content { padding: 20px; }
    .newsletter-card { padding: 40px; }
    .no-news-card { padding: 50px 30px; }
}

@media (max-width: 767.98px) {
    .news-hero { padding: 80px 0 60px; }
    .news-hero-title { font-size: 2.5rem; }
    .news-hero-subtitle { font-size: 1.1rem; }
    .news-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .news-content-section, .newsletter-section, .no-news-section { padding: 60px 0; }
    .newsletter-card { padding: 30px; }
    .newsletter-form { flex-direction: column; gap: 15px; }
    .newsletter-input-group { width: 100%; }
    .newsletter-btn { width: 100%; justify-content: center; }
    .news-image-container { height: 200px; }
    .no-news-card { padding: 40px 25px; }
    .no-news-icon { width: 80px; height: 80px; font-size: 32px; }
}

@media (max-width: 575.98px) {
    .news-hero-title { font-size: 2rem; }
    .news-hero-subtitle { font-size: 1rem; }
    .news-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .newsletter-card { padding: 25px; }
    .news-content { padding: 15px; }
    .news-title { font-size: 1.2rem; }
    .news-image-container { height: 180px; }
    .no-news-card { padding: 30px 20px; }
    .no-news-icon { width: 70px; height: 70px; font-size: 28px; }
}

/* News Details Page Styles */
.news-detail-hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.news-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="news-detail-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23news-detail-grain)"/></svg>');
    opacity: 0.3;
}

.news-detail-hero-content {
    position: relative;
    z-index: 2;
}

.news-detail-hero-badge {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.news-detail-hero-title {
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.news-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-detail-date,
.news-detail-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.news-detail-date i,
.news-detail-category i {
    font-size: 0.9rem;
}

.news-detail-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-detail-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.news-detail-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.news-detail-excerpt {
    margin-bottom: 40px;
}

.news-detail-excerpt h3 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.news-detail-excerpt .lead {
    color: #6b7b86;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.news-detail-description {
    margin-bottom: 40px;
}

.news-detail-description h3 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.news-detail-description-editor {
    color: #6b7b86;
    font-size: 1.1rem;
    line-height: 1.8;
}

.news-detail-description-editor h1,
.news-detail-description-editor h2,
.news-detail-description-editor h3,
.news-detail-description-editor h4,
.news-detail-description-editor h5,
.news-detail-description-editor h6 {
    color: #1f2b44;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
}

.news-detail-description-editor h1:first-child,
.news-detail-description-editor h2:first-child,
.news-detail-description-editor h3:first-child,
.news-detail-description-editor h4:first-child,
.news-detail-description-editor h5:first-child,
.news-detail-description-editor h6:first-child {
    margin-top: 0;
}

.news-detail-description-editor p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.news-detail-description-editor ul,
.news-detail-description-editor ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.news-detail-description-editor li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.news-detail-description-editor strong {
    color: var(--hp-primary);
    font-weight: 700;
}

.news-detail-description-editor em {
    color: #5d6b7a;
    font-style: italic;
}

.news-detail-description-editor a {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.news-detail-description-editor a:hover {
    color: var(--hp-primary-700);
    text-decoration: underline;
}

.news-detail-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-share {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.news-detail-share h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.news-detail-share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.facebook:hover {
    background: #166fe5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24,119,242,0.3);
}

.share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.share-btn.twitter:hover {
    background: #1a91da;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29,161,242,0.3);
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,119,181,0.3);
}

.share-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn.whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.news-detail-related-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-detail-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-detail-related-header h2 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.news-detail-related-header p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.related-news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.related-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-news-card:hover::before {
    transform: scaleX(1);
}

.related-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226,88,34,0.15);
}

.related-news-image {
    height: 200px;
    overflow: hidden;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-news-card:hover .related-news-image img {
    transform: scale(1.05);
}

.related-news-content {
    padding: 25px;
}

.related-news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--hp-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.related-news-date i {
    font-size: 0.8rem;
}

.related-news-title {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-excerpt {
    color: #6b7b86;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-read-more {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(226,88,34,0.08);
}

.related-news-read-more:hover {
    color: var(--hp-primary-700);
    background: rgba(226,88,34,0.15);
    transform: translateX(5px);
}

.related-news-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.related-news-read-more:hover i {
    transform: translateX(3px);
}

.no-related-news {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
}

.no-related-news-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    font-size: 32px;
    margin-bottom: 24px;
}

.no-related-news h4 {
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.no-related-news p {
    color: #6b7b86;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.news-detail-back-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-detail-back-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226,88,34,0.1);
    position: relative;
    overflow: hidden;
}

.news-detail-back-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-primary-700));
}

.news-detail-back-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,88,34,0.12);
    color: var(--hp-primary);
    box-shadow: 0 8px 22px rgba(226,88,34,0.25);
    margin-bottom: 24px;
    font-size: 32px;
}

.news-detail-back-card h3 {
    font-weight: 800;
    color: #1f2b44;
    margin-bottom: 16px;
    font-size: 2rem;
}

.news-detail-back-card p {
    color: #6b7b86;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.news-detail-back-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.news-detail-back-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.news-detail-back-btn.btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.news-detail-back-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.news-detail-back-btn.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
}

.news-detail-back-btn.btn-outline-primary:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

/* News Details page responsive */
@media (max-width: 991.98px) {
    .news-detail-hero-title { font-size: 3rem; }
    .news-detail-content-card { padding: 40px; }
    .news-detail-meta { gap: 20px; }
    .news-detail-back-card { padding: 40px; }
}

@media (max-width: 767.98px) {
    .news-detail-hero { padding: 100px 0 80px; }
    .news-detail-hero-title { font-size: 2.5rem; }
    .news-detail-hero-badge { width: 80px; height: 80px; font-size: 32px; }
    .news-detail-content-section, .news-detail-related-section, .news-detail-back-section { padding: 60px 0; }
    .news-detail-content-card { padding: 30px; }
    .news-detail-meta { flex-direction: column; align-items: center; gap: 15px; }
    .news-detail-share-buttons { justify-content: center; }
    .news-detail-back-actions { flex-direction: column; align-items: center; }
    .news-detail-back-btn { width: 200px; justify-content: center; }
    .related-news-image { height: 180px; }
    .no-related-news { padding: 40px 25px; }
    .no-related-news-icon { width: 70px; height: 70px; font-size: 28px; }
}

@media (max-width: 575.98px) {
    .news-detail-hero-title { font-size: 2rem; }
    .news-detail-hero-badge { width: 70px; height: 70px; font-size: 28px; }
    .news-detail-content-card { padding: 25px; }
    .news-detail-excerpt h3, .news-detail-description h3 { font-size: 1.5rem; }
    .news-detail-excerpt .lead { font-size: 1.1rem; }
    .news-detail-share-buttons { flex-direction: column; align-items: center; }
    .share-btn { width: 200px; justify-content: center; }
    .related-news-image { height: 160px; }
    .no-related-news { padding: 30px 20px; }
    .no-related-news-icon { width: 60px; height: 60px; font-size: 24px; }
    .news-detail-back-card { padding: 25px; }
    .news-detail-back-badge { width: 70px; height: 70px; font-size: 28px; }
}

/* Modern Navbar Styles */
.navbar-topbar {
    background: linear-gradient(135deg, #1f2b44 0%, #2c3e50 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(226,88,34,0.2);
    position: relative;
    overflow: hidden;
}

.navbar-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="topbar-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23topbar-grain)"/></svg>');
    opacity: 0.5;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.topbar-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.topbar-item i {
    color: var(--hp-primary);
    font-size: 0.8rem;
}

.topbar-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar-link:hover {
    color: var(--hp-primary);
    text-decoration: none;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.topbar-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.topbar-social:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.navbar-main {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226,88,34,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-main.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.navbar-brand {
    padding: 0;
}

.navbar-logo {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 4px;
    flex-wrap: wrap;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: #1f2b44;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar-nav .nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--hp-primary);
    background: rgba(226,88,34,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226,88,34,0.2);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-nav .nav-link.active {
    color: var(--hp-primary);
    background: rgba(226,88,34,0.15);
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--hp-primary);
    border-radius: 2px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-language {
    position: relative;
}

.btn-language {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(226,88,34,0.2);
    color: #1f2b44;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-language:hover {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 5px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 160px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Keep dropdown open when hovering over it */
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add a small invisible bridge to prevent gap issues */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 999;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    display: block;
    width: 100%;
    clear: both;
    text-align: left;
    white-space: nowrap;
    background: none;
    border: none;
    text-decoration: none;
    color: #1f2b44;
}

.dropdown-item:hover {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    text-decoration: none;
}

.dropdown-item:focus {
    background: rgba(226,88,34,0.1);
    color: var(--hp-primary);
    text-decoration: none;
    outline: none;
}

.navbar-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-register {
    background: transparent;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.btn-register:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226,88,34,0.3);
    text-decoration: none;
}

.btn-login {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.4);
    text-decoration: none;
}

.btn-logout {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(220,53,69,0.3);
}

.btn-logout:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220,53,69,0.4);
}

/* Navbar Responsive */
@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .navbar-nav {
        gap: 2px;
    }
}

@media (max-width: 991.98px) {
    .navbar-topbar {
        display: none;
    }
    
    .navbar-main {
        padding: 10px 0;
    }
    
    .navbar-logo {
        max-width: 150px;
    }
    
    .navbar-nav {
        margin-top: 20px;
        gap: 5px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
        justify-content: flex-start;
    }
    
    .navbar-actions {
        margin-top: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .navbar-auth {
        justify-content: center;
        gap: 10px;
    }
    
    .btn-register,
    .btn-login,
    .btn-logout {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-logo {
        max-width: 120px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .topbar-left {
        gap: 15px;
    }
    
    .topbar-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        max-width: 100px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .btn-register,
    .btn-login,
    .btn-logout {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-hero-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-hero-grain)"/></svg>');
    opacity: 0.5;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pricing-hero-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.pricing-hero-badge i {
    font-size: 2rem;
    color: #ffffff;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pricing-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Plans Section */
.pricing-plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.pricing-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(226,88,34,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
    opacity: 0.5;
}

.pricing-alert {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(220,53,69,0.3);
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    opacity: 0;
    transition: all 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--hp-primary);
}

.pricing-card-featured {
    border-color: var(--hp-primary);
    transform: scale(1.05);
}

.pricing-card-featured::before {
    opacity: 1;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.pricing-badge i {
    font-size: 1.5rem;
    color: #ffffff;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 10px;
}

.pricing-duration {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-currency {
    font-size: 1.5rem;
    color: var(--hp-primary);
    font-weight: 600;
    vertical-align: top;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2b44;
    line-height: 1;
}

.pricing-description {
    text-align: center;
    margin-bottom: 30px;
    color: #6c757d;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
}

.pricing-feature-text {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.pricing-actions {
    text-align: center;
}

.pricing-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pricing-btn:last-child {
    margin-bottom: 0;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.pricing-btn-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

.pricing-btn-trial {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.pricing-btn-trial:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40,167,69,0.4);
    color: #ffffff;
}

/* Pricing FAQ Section */
.pricing-faq-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.pricing-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-faq-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.pricing-faq-badge i {
    font-size: 1.8rem;
    color: #ffffff;
}

.pricing-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2b44;
    margin-bottom: 15px;
}

.pricing-faq-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-faq-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226,88,34,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--hp-primary);
}

.pricing-faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.pricing-faq-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.pricing-faq-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2b44;
    margin-bottom: 15px;
}

.pricing-faq-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Page Responsive */
@media (max-width: 991.98px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .pricing-hero {
        padding: 60px 0 40px;
    }
    
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-faq-header h2 {
        font-size: 2rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .pricing-hero-title {
        font-size: 1.8rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .pricing-faq-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-amount {
        font-size: 2.2rem;
    }
}

/* ===========================================
   EMAIL VERIFICATION PAGE STYLES
   =========================================== */

/* Verify Hero Section */
.verify-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.verify-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="verify-hero-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23verify-hero-grain)"/></svg>');
    opacity: 0.5;
}

.verify-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.verify-hero-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.verify-hero-badge i {
    font-size: 2rem;
    color: #ffffff;
}

.verify-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.verify-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Verify Content Section */
.verify-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.verify-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="verify-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(226,88,34,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23verify-pattern)"/></svg>');
    opacity: 0.5;
}

.verify-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(226,88,34,0.1);
}

.verify-card-header {
    text-align: center;
    margin-bottom: 40px;
}

.verify-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.verify-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.verify-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2b44;
    margin: 0;
}

.verify-card-body {
    position: relative;
}

/* Success Alert */
.verify-success-alert {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.verify-alert-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verify-alert-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.verify-alert-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.verify-alert-content p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* Instructions */
.verify-instructions {
    margin-bottom: 40px;
}

.verify-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(226,88,34,0.05);
    border-radius: 15px;
    border: 1px solid rgba(226,88,34,0.1);
}

.verify-step:last-child {
    margin-bottom: 0;
}

.verify-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.verify-step-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.verify-step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2b44;
    margin: 0 0 8px 0;
}

.verify-step-content p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Resend Section */
.verify-resend-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(226,88,34,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.verify-resend-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.verify-resend-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.verify-resend-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2b44;
    margin: 0;
}

.verify-resend-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.verify-resend-form {
    text-align: center;
}

.verify-resend-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
}

.verify-resend-btn:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

/* Help Section */
.verify-help-section {
    background: linear-gradient(135deg, rgba(226,88,34,0.05), rgba(226,88,34,0.02));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(226,88,34,0.1);
}

.verify-help-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.verify-help-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.verify-help-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2b44;
    margin: 0;
}

.verify-help-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.verify-help-btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.verify-help-btn:hover {
    background: var(--hp-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
    text-decoration: none;
}

/* Verify Page Responsive */
@media (max-width: 991.98px) {
    .verify-hero {
        padding: 80px 0 60px;
    }
    
    .verify-hero-title {
        font-size: 2.5rem;
    }
    
    .verify-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .verify-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .verify-hero {
        padding: 60px 0 40px;
    }
    
    .verify-hero-title {
        font-size: 2rem;
    }
    
    .verify-hero-subtitle {
        font-size: 1rem;
    }
    
    .verify-card {
        padding: 30px 20px;
    }
    
    .verify-title {
        font-size: 1.6rem;
    }
    
    .verify-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .verify-resend-header,
    .verify-help-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .verify-hero-title {
        font-size: 1.8rem;
    }
    
    .verify-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .verify-card {
        padding: 25px 15px;
    }
    
    .verify-title {
        font-size: 1.4rem;
    }
    
    .verify-icon {
        width: 60px;
        height: 60px;
    }
    
    .verify-icon i {
        font-size: 1.5rem;
    }
    
    .verify-step {
        padding: 15px;
    }
    
    .verify-resend-section,
    .verify-help-section {
        padding: 20px;
    }
}

/* ===========================================
   PAYMENT PAGE STYLES
   =========================================== */

/* Payment Hero Section */
.payment-hero {
    background: linear-gradient(135deg, rgba(226,88,34,0.95) 0%, rgba(11,18,32,0.98) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.payment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-hero-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23payment-hero-grain)"/></svg>');
    opacity: 0.5;
}

.payment-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.payment-hero-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.payment-hero-badge i {
    font-size: 2rem;
    color: #ffffff;
}

.payment-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.payment-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Payment Content Section */
.payment-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.payment-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(226,88,34,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23payment-pattern)"/></svg>');
    opacity: 0.5;
}

/* Order Summary */
.payment-order-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(226,88,34,0.1);
    height: fit-content;
}

.payment-order-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(226,88,34,0.1);
}

.payment-order-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.payment-order-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.payment-order-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2b44;
    margin: 0;
}

.payment-plan-card {
    background: linear-gradient(135deg, rgba(226,88,34,0.05), rgba(226,88,34,0.02));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(226,88,34,0.1);
}

.payment-plan-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2b44;
    margin: 0 0 10px 0;
}

.payment-plan-header p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.payment-plan-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hp-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-price-breakdown {
    margin-bottom: 25px;
}

.payment-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226,88,34,0.1);
}

.payment-price-item:last-child {
    border-bottom: none;
}

.payment-price-item span:first-child {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.payment-price-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2b44;
}

.payment-discount {
    color: #28a745;
}

.payment-total {
    background: rgba(226,88,34,0.05);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(226,88,34,0.1);
}

.payment-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2b44;
}

.payment-total .payment-price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hp-primary);
}

/* Promo Code Section */
.payment-promo-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(226,88,34,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.payment-promo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-promo-header i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.payment-promo-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2b44;
    margin: 0;
}

.payment-promo-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.payment-promo-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226,88,34,0.25);
}

.payment-promo-btn {
    border-radius: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.payment-promo-btn:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.payment-promo-response {
    margin-top: 15px;
}

.payment-promo-message {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.payment-promo-success {
    background: rgba(40,167,69,0.1);
    color: #28a745;
    border: 1px solid rgba(40,167,69,0.2);
}

.payment-promo-danger {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,0.2);
}

/* Billing Form */
.payment-billing-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(226,88,34,0.1);
}

.payment-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(226,88,34,0.1);
}

.payment-form-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(226,88,34,0.3);
}

.payment-form-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.payment-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2b44;
    margin: 0;
}

/* Invoice Info */
.payment-invoice-info {
    margin-bottom: 25px;
}

.payment-invoice-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(226,88,34,0.1), rgba(226,88,34,0.05));
    border: 1px solid rgba(226,88,34,0.2);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--hp-primary);
    font-weight: 600;
}

.payment-invoice-badge i {
    font-size: 1rem;
}

/* Error Alert */
.payment-error-alert {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(220,53,69,0.3);
}

.payment-error-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-error-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.payment-error-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.payment-error-content ul {
    margin: 0;
    padding-left: 20px;
}

.payment-error-content li {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Form Groups */
.payment-form-group {
    margin-bottom: 25px;
}

.payment-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2b44;
    margin-bottom: 8px;
}

.payment-form-group label i {
    color: var(--hp-primary);
    font-size: 0.9rem;
}

.payment-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.payment-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 0.2rem rgba(226,88,34,0.25);
    background: #ffffff;
}

.payment-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Form Actions */
.payment-form-actions {
    margin-top: 30px;
    text-align: center;
}

.payment-submit-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-700));
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226,88,34,0.3);
    min-width: 250px;
}

.payment-submit-btn:hover {
    background: linear-gradient(135deg, var(--hp-primary-700), var(--hp-primary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226,88,34,0.4);
    color: #ffffff;
}

/* Payment Page Responsive */
@media (max-width: 991.98px) {
    .payment-hero {
        padding: 80px 0 60px;
    }
    
    .payment-hero-title {
        font-size: 2.5rem;
    }
    
    .payment-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .payment-billing-form {
        padding: 30px;
    }
    
    .payment-order-summary {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .payment-hero {
        padding: 60px 0 40px;
    }
    
    .payment-hero-title {
        font-size: 2rem;
    }
    
    .payment-hero-subtitle {
        font-size: 1rem;
    }
    
    .payment-billing-form {
        padding: 25px;
    }
    
    .payment-order-summary {
        padding: 25px;
    }
    
    .payment-form-header,
    .payment-order-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 575.98px) {
    .payment-hero-title {
        font-size: 1.8rem;
    }
    
    .payment-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .payment-billing-form {
        padding: 20px;
    }
    
    .payment-order-summary {
        padding: 20px;
    }
    
    .payment-submit-btn {
        width: 100%;
        min-width: auto;
    }
    
    .payment-form-group label {
        font-size: 0.95rem;
    }
    
    .payment-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* =========================================== INDEX PAGE SECTIONS =========================================== */

/* About Section */
.index-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.index-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e25822' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.index-about-content {
    position: relative;
    z-index: 2;
}

.index-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 88, 34, 0.1);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 88, 34, 0.2);
}

.index-about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index-about-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.index-about-description {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 40px;
}

.index-about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.index-about-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.index-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Us button specific styling */
.index-about-actions .btn-outline-primary {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.index-about-actions .btn-outline-primary:hover {
    background-color: #218838;
    border-color: #218838;
    color: white;
}

.index-about-image {
    position: relative;
    z-index: 2;
}

.index-about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.index-about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-about-image-wrapper:hover img {
    transform: scale(1.05);
}

.index-about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.index-stat-item {
    text-align: center;
}

.index-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1;
}

.index-stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 5px;
}

/* Features Section */
.index-features-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.index-features-header {
    margin-bottom: 80px;
}

.index-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 88, 34, 0.1);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 88, 34, 0.2);
}

.index-features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index-features-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.index-feature-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.index-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.index-feature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.index-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-feature-card:hover .index-feature-image img {
    transform: scale(1.1);
}

.index-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(226, 88, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.index-feature-card:hover .index-feature-overlay {
    opacity: 1;
}

.index-feature-overlay i {
    font-size: 3rem;
    color: white;
}

.index-feature-content {
    padding: 30px;
}

.index-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(226, 88, 34, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.index-feature-icon i {
    font-size: 1.5rem;
    color: var(--hp-primary);
}

.index-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.index-feature-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.index-features-cta {
    margin-top: 60px;
}

.index-features-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.index-features-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 88, 34, 0.3);
}

/* Pricing Section */
.index-pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.index-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e25822' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.index-pricing-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.index-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 88, 34, 0.1);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 88, 34, 0.2);
}

.index-pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index-pricing-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.index-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.index-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.index-pricing-featured {
    border-color: var(--hp-primary);
    transform: scale(1.05);
}

.index-pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.index-pricing-badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hp-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.index-pricing-header-card {
    margin-bottom: 30px;
}

.index-pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(226, 88, 34, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.index-pricing-icon i {
    font-size: 2rem;
    color: var(--hp-primary);
}

.index-pricing-title-card {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.index-pricing-duration {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.index-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.index-pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--hp-primary);
    margin-right: 5px;
}

.index-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.index-pricing-description {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.index-pricing-features {
    margin-bottom: 40px;
}

.index-pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.index-pricing-feature i {
    font-size: 1.1rem;
    width: 20px;
}

.index-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.index-pricing-btn,
.index-pricing-btn-trial {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.index-pricing-btn:hover,
.index-pricing-btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.index-pricing-footer {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.index-pricing-description-footer {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.index-pricing-view-all {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.index-pricing-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 88, 34, 0.3);
}

/* Blog Section */
.index-blog-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.index-blog-header {
    margin-bottom: 80px;
}

.index-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 88, 34, 0.1);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 88, 34, 0.2);
}

.index-blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index-blog-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.index-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.index-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.index-blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.index-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-blog-card:hover .index-blog-image img {
    transform: scale(1.1);
}

.index-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(226, 88, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.index-blog-card:hover .index-blog-overlay {
    opacity: 1;
}

.index-blog-read-more {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.index-blog-read-more:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.index-blog-read-more i {
    font-size: 1.5rem;
}

.index-blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.index-blog-content {
    padding: 30px;
}

.index-blog-title-card {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.4;
}

.index-blog-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.index-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
}

.index-blog-author i {
    color: var(--hp-primary);
}

.index-blog-link {
    color: var(--hp-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.index-blog-link:hover {
    color: var(--hp-primary-700);
    transform: translateX(5px);
}

.index-blog-footer {
    margin-top: 60px;
}

.index-blog-view-all {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.index-blog-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 88, 34, 0.3);
}

/* Quote Section */
.index-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.index-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e25822' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.index-quote-content {
    position: relative;
    z-index: 2;
    color: white;
}

.index-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 88, 34, 0.2);
    color: var(--hp-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 88, 34, 0.3);
}

.index-quote-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index-quote-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.index-quote-features {
    margin-bottom: 40px;
}

.index-quote-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.index-quote-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(226, 88, 34, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-quote-feature-icon i {
    font-size: 1.5rem;
    color: var(--hp-primary);
}

.index-quote-feature-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.index-quote-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.index-quote-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.index-quote-contact-icon {
    width: 60px;
    height: 60px;
    background: var(--hp-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-quote-contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.index-quote-contact-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.index-quote-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp-primary);
    margin: 0;
}

.index-quote-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.index-quote-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.index-quote-form-icon {
    width: 80px;
    height: 80px;
    background: rgba(226, 88, 34, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.index-quote-form-icon i {
    font-size: 2rem;
    color: var(--hp-primary);
}

.index-quote-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.index-quote-form-header p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.index-quote-form-group {
    margin-bottom: 25px;
}

.index-quote-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.index-quote-form-group label i {
    color: var(--hp-primary);
    width: 16px;
}

.index-quote-input {
    border: 2px solid #6b7280;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231f2937' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 55px;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.index-quote-input:hover {
    border-color: #374151;
    background-color: #f9fafb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.index-quote-input:focus {
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(226, 88, 34, 0.2);
    outline: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e25822' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.index-quote-input::placeholder {
    color: #6b7280;
    font-weight: 500;
}

/* Select dropdown styling */
.index-quote-input option {
    padding: 15px 20px;
    background: white;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    margin: 2px 0;
}

.index-quote-input option:hover {
    background: rgba(226, 88, 34, 0.1);
    color: var(--hp-primary);
}

.index-quote-input option:checked,
.index-quote-input option:selected {
    background: var(--hp-primary);
    color: white;
    font-weight: 700;
}

/* Specific select styling for better visibility */
select.index-quote-input {
    background-color: #ffffff !important;
    border: 2px solid #6b7280 !important;
    color: #1f2937 !important;
    font-weight: 600 !important;
}

select.index-quote-input:hover {
    background-color: #f9fafb !important;
    border-color: #374151 !important;
}

select.index-quote-input:focus {
    background-color: #ffffff !important;
    border-color: var(--hp-primary) !important;
    box-shadow: 0 0 0 3px rgba(226, 88, 34, 0.2) !important;
}

/* Additional styling for better dropdown visibility */
.index-quote-form-group select {
    min-height: 55px;
    line-height: 1.5;
}

.index-quote-form-group select option {
    min-height: 45px;
    line-height: 1.5;
    display: block;
}

.index-quote-form-actions {
    margin-top: 30px;
}

.index-quote-submit-btn {
    width: 100%;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
}

.index-quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 88, 34, 0.3);
}

/* Responsive Design for Index Sections */
@media (max-width: 991.98px) {
    .index-about-title,
    .index-features-title,
    .index-pricing-title,
    .index-blog-title,
    .index-quote-title {
        font-size: 2.5rem;
    }
    
    .index-about-actions {
        justify-content: center;
    }
    
    .index-pricing-featured {
        transform: none;
    }
    
    .index-pricing-featured:hover {
        transform: translateY(-10px);
    }
    
    .index-quote-form-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .index-about-section,
    .index-features-section,
    .index-pricing-section,
    .index-blog-section,
    .index-quote-section {
        padding: 60px 0;
    }
    
    .index-about-title,
    .index-features-title,
    .index-pricing-title,
    .index-blog-title,
    .index-quote-title {
        font-size: 2rem;
    }
    
    .index-about-subtitle,
    .index-features-subtitle,
    .index-pricing-subtitle,
    .index-blog-subtitle,
    .index-quote-subtitle {
        font-size: 1.1rem;
    }
    
    .index-about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .index-about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .index-pricing-actions {
        flex-direction: column;
    }
    
    .index-quote-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .index-quote-contact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .index-quote-form-card {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .index-about-title,
    .index-features-title,
    .index-pricing-title,
    .index-blog-title,
    .index-quote-title {
        font-size: 1.8rem;
    }
    
    .index-about-image-wrapper img {
        height: 300px;
    }
    
    .index-feature-image,
    .index-blog-image {
        height: 200px;
    }
    
    .index-pricing-card {
        padding: 30px 20px;
    }
    
    .index-blog-content {
        padding: 20px;
    }
    
    .index-quote-form-card {
        padding: 20px;
    }
    
    .index-quote-form-header h3 {
        font-size: 1.5rem;
    }
    
    .index-quote-form-icon {
        width: 60px;
        height: 60px;
    }
    
    .index-quote-form-icon i {
        font-size: 1.5rem;
    }
}

/* ========================================
   MODERN SLIDER STYLES
======================================== */

.modern-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* Ensure slider starts from very top of page */
.modern-slider-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Remove any default margins/padding that might cause gaps */
body {
    margin: 0;
    padding: 0;
}

.modern-slider-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modern-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modern-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.modern-slider-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.modern-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInDown 1s ease-out;
}

.modern-slider-badge i {
    color: var(--hp-primary);
    font-size: 1rem;
}

.modern-slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.3s both;
}

.modern-slider-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.modern-slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.modern-slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-slider-btn:hover::before {
    left: 100%;
}

.modern-slider-btn-primary {
    background: var(--hp-primary);
    color: white;
    border-color: var(--hp-primary);
    box-shadow: 0 8px 25px rgba(226, 88, 34, 0.3);
}

.modern-slider-btn-primary:hover {
    background: var(--hp-primary-700);
    border-color: var(--hp-primary-700);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(226, 88, 34, 0.4);
}

.modern-slider-btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.modern-slider-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.modern-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--hp-primary);
    transform: translateY(-50%) scale(1.1);
}

.modern-slider-prev {
    left: 30px;
}

.modern-slider-next {
    right: 30px;
}

.modern-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.modern-slider-indicators button {
    width: 12px;
    height: 12px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-indicator-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.modern-slider-indicators button.active .modern-indicator-dot,
.modern-slider-indicators button:hover .modern-indicator-dot {
    background: var(--hp-primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(226, 88, 34, 0.5);
}

/* Slider Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Slider Responsive Design */
@media (max-width: 1200px) {
    .modern-slider-title {
        font-size: 3rem;
    }
    
    .modern-slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .modern-slider-prev {
        left: 20px;
    }
    
    .modern-slider-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .modern-slider-section,
    .modern-slider-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .modern-slider-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .modern-slider-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .modern-slider-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .modern-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .modern-slider-prev {
        left: 15px;
    }
    
    .modern-slider-next {
        right: 15px;
    }
    
    .modern-slider-indicators {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .modern-slider-section,
    .modern-slider-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .modern-slider-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .modern-slider-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .modern-slider-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .modern-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .modern-slider-prev {
        left: 10px;
    }
    
    .modern-slider-next {
        right: 10px;
    }
}
