/* Custom CSS for Goodsmith Website Clone - Exact Match */

/* Global Overflow Fix */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none !important;
}
/* Simple How It Works Section Styles */
.how-it-works-section {
    background-color: #f8f9fa;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 3px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-red);
}

.step-icon {
    position: relative;
    display: inline-block;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.step-card:hover .icon-circle {
    transform: scale(1.1);
}



/* Modern CTA Section Styles */
.modern-cta-section {
    position: relative;
    margin: 3rem 0;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red) 50%, var(--btn-red-hover) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(253, 86, 34, 0.3);
}

.cta-background {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


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

.feature-item i {
    color: var(--text-white);
    font-size: 1.2rem;
}

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

.action-buttons {
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-number {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.phone-number i {
    color: var(--text-white);
    margin-right: 0.5rem;
}

.availability {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.availability i {
    color: var(--text-white);
    margin-right: 0.5rem;
}

/* Unique Services Section Styles */
.unique-services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.service-selector-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.service-selector-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 600px;
}

.service-categories-grid {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    overflow-y: auto;
    border-right: 1px solid #e9ecef;
}

.service-category-item {
    background: white;
    border-radius: 10px;
    padding: 0.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.service-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 86, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-category-item:hover::before {
    left: 100%;
}

.service-category-item:hover {
    box-shadow: 0 15px 35px rgba(253, 86, 34, 0.2);
    border-color: var(--accent-red);
}

.service-category-item.active {
    background: linear-gradient(135deg, var(--accent-red) 0%, #e94920 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(253, 86, 34, 0.4);
    border-color: var(--accent-red);
}

.category-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 0.9rem;
    border: 2px solid var(--accent-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-category-item.active .category-icon {
    background: white;
    color: var(--accent-red);
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.05; }
    100% { transform: scale(1); opacity: 0.1; }
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.service-category-item.active .category-info h4 {
    color: white;
}

.category-info p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
}

.service-category-item.active .category-info p {
    color: rgba(255, 255, 255, 0.8);
}


.service-details-panel {
    padding: 1.5rem;
    background: white;
    overflow-y: auto;
}

.details-content {
    height: 100%;
}

.service-detail {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    50% { 
        opacity: 0.7; 
        transform: translateY(15px) scale(0.98); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-title-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.detail-title-section p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

.detail-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.detail-image {
    width: 100%;
    text-align: center;
}

.detail-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 700px;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.detail-image img:hover {
    transform: scale(1.02);
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

.feature-item i {
    color: var(--accent-red);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.detail-actions {
    text-align: center;
    margin-top: 0.5rem;
}

.detail-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(253, 86, 34, 0.3);
}

.detail-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(253, 86, 34, 0.4);
}

.modern-tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.modern-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
    gap: 0.5rem;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modern-tabs-nav::-webkit-scrollbar {
    display: none;
}

.modern-tab {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 140px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-secondary);
}

.modern-tab:hover {
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 86, 34, 0.2);
}

.modern-tab.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 86, 34, 0.3);
}

.tab-icon {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    flex-shrink: 0;
}

.modern-tab.active .tab-icon {
    background: white;
    color: var(--accent-red);
    border-color: white;
}

.modern-tab:hover .tab-icon {
    transform: scale(1.1);
}

.tab-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.modern-tab.active .tab-indicator {
    width: 80%;
}

.modern-tab-content {
    padding: 3rem;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modern-service-image {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modern-service-content {
    padding-left: 2rem;
}

.modern-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

.services-grid {
    margin-bottom: 2rem;
}

.service-category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
}

.icon-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-category-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--accent-red);
    color: white;
}

.service-category-card:hover .icon-glow {
    transform: scale(1.2);
    background: rgba(220, 38, 38, 0.2);
}

.service-badge {
    background: linear-gradient(135deg, var(--accent-red), var(--btn-red));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.emergency {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card-content {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f8f9fa;
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-category-card:hover .feature-tag {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.service-card-footer {
    text-align: center;
}

.service-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.service-details-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.service-detail-image {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-detail-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-detail-features {
    margin-bottom: 2rem;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.detail-feature-item i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Modern Features Section Styles */
.modern-features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.modern-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
}

.icon-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--accent-red);
    color: white;
}

.modern-feature-card:hover .icon-bg {
    transform: scale(1.2);
    background: rgba(220, 38, 38, 0.2);
}

.feature-badge {
    background: linear-gradient(135deg, var(--accent-red), var(--btn-red));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content {
    text-align: left;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--accent-red);
    font-size: 0.8rem;
}

.trust-indicators {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--accent-red);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.trust-item:hover i {
    color: white;
}

/* Modern Testimonials Section Styles */
.modern-testimonials-section {
    background: var(--bg-primary);
    position: relative;
}

.testimonials-grid {
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.customer-details h5 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.customer-location {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: var(--accent-red);
    font-size: 1rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

/* Trust Stats */
.trust-stats {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Trust Stats */
@media (max-width: 768px) {
    .trust-stats {
        padding: 0rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .stat-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .trust-stats {
        padding: 1.25rem;
        border-radius: 10px;
        margin: 1rem 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item:last-child {
        margin-bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    
    .cta-actions {
        margin-top: 2rem;
    }
    
    .action-buttons .btn {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .rating {
        align-self: flex-end;
    }
    
    .customer-info {
        gap: 0.8rem;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-stats {
        padding: 1.5rem;
    }
}

:root {
    /* Font Family */
    --font-primary: 'Poppins', sans-serif;
    
    /* Background Colors */
    --bg-primary: #f8f7f2;
    --bg-secondary: #eae5d3;
    --bg-medium: #9e9c9e;
    --bg-olive: #9a8b66;
    --bg-dark: #1c1b1c;
    --bg-white: #ffffff;
    
    /* Text Colors */
    --text-primary: #1c1b1c;
    --text-secondary: #4d4c4d;
    --text-medium: #9e9c9e;
    --text-light: #d6d4d6;
    --text-white: #ffffff;
    --text-muted: #897952;
    
    /* Accent Colors */
    --accent-red: #fd5622;
    --accent-blue: #6a8eeb;
    
    /* Button Colors */
    --btn-red: #fd5622;
    --btn-red-hover: #e04a1e;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    /* Borders */
    --border-light: #e5e5e5;
    --border-medium: #d6d4d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Navigation */
.navbar {
    /*padding: 1rem 0;*/
    transition: all 0.3s ease;
    background-color: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-light);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27, 27, 28, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.navbar-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-red) !important;
}

.nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

/* Modern Slider Styles */
.modern-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slider-slide.prev {
    transform: translateX(-100%);
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    animation: slideInLeft 1s ease-out 0.5s both;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    animation: slideInLeft 1s ease-out 0.7s both;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    animation: slideInUp 1s ease-out 0.9s both;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(253, 86, 34, 0.4);
}

/* Modern Navigation Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(253, 86, 34, 0.4);
}

.nav-btn:hover i {
    color: white;
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Modern Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.indicator:hover::before {
    border-color: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

.indicator.active::before {
    border-color: var(--accent-red);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), #ff6b6b);
    width: 0%;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(248, 247, 242, 0.95) 0%, rgba(248, 247, 242, 0.8) 50%, rgba(248, 247, 242, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    border-radius: 16px;
}

.hero-content h1 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    font-size: 3.5rem;
}

.hero-content .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}


.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

/* Buttons - Exact Match */
.btn-primary {
    background-color: var(--btn-red);
    border-color: var(--btn-red);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    color: var(--text-white);
    box-shadow: 0 2px 4px rgba(204, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Remove underline from all button links */
a.btn, a.btn-primary, a.btn-secondary, a.btn-outline-light, a.btn-light {
    text-decoration: none !important;
}

a.btn:hover, a.btn-primary:hover, a.btn-secondary:hover, a.btn-outline-light:hover, a.btn-light:hover {
    text-decoration: none !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn-primary:hover {
    background-color: var(--btn-red-hover);
    border-color: var(--btn-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
    color: var(--text-white);
}

.btn-primary:focus {
    background-color: var(--btn-red);
    border-color: var(--btn-red);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
    color: var(--text-white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    padding: 14px 28px;
    font-size: 1rem;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--text-white);
    color: var(--text-primary);
    border-color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-lg.btn-primary {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 700;
}



/* Features Section */
.features-section {
    background: var(--bg-primary);
}

.feature-card {
    padding: 2rem 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-dark);
    color: var(--text-white);
}

.testimonials-section h2 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 2.5rem;
}

.testimonial-slide {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    margin: 0 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial-text {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-professionals {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    background: var(--accent-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--btn-red-hover);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 20px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--text-medium);
    border: none;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-red);
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent-red);
}

.testimonial-content p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-primary);
    position: relative;
}

.how-it-works-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.how-it-works-section .row {
    position: relative;
}

/* Connecting line between steps */
/* .how-it-works-section .row::before {
    content: '';
    position: absolute;
    top: 87px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--accent-red);
    z-index: 1;
} */

.step-card {
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 3;
}

.step-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

.faq-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.accordion-button {
    background: var(--bg-white);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-red);
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-red);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fd5622'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark) !important;
    color: var(--text-white);
}

.footer h5, .footer h6 {
    color: var(--text-white);
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: var(--text-white) !important;
}

/* Text colors */
.text-primary {
    color: var(--bg-white) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Background colors */
.bg-light {
    background-color: var(--bg-primary) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

/* Modern Service Tabs Section */
.modern-tabs-section {
    background: var(--bg-primary);
    position: relative;
}

.modern-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.modern-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem;
    /* margin-bottom: 3rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light); */
}

.modern-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.modern-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.modern-tab:hover::before {
    width: 80%;
}

.modern-tab:hover {
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.modern-tab.active {
    background: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

.modern-tab.active::before {
    width: 80%;
    background: var(--text-white);
}

.tab-icon {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tab-icon i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.modern-tab.active .tab-icon i {
    color: var(--text-white);
}

.modern-tab:hover .tab-icon i {
    color: var(--accent-red);
}

.modern-tab.active:hover .tab-icon i {
    color: var(--text-white);
}

.tab-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.modern-tab.active .tab-label {
    color: var(--text-white);
    font-weight: 700;
}

.modern-tab:hover .tab-label {
    color: var(--accent-red);
}

.modern-tab.active:hover .tab-label {
    color: var(--text-white);
}

/* Tab Content */
.modern-tab-content {
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-service-image {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.modern-service-content {
    /* padding-left: 1rem; */
    position: relative;
}

.modern-service-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.modern-service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}

.modern-service-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* About Us Page Feature Items */
.why-choose-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-left: 3px solid var(--accent-red);
    transition: all 0.3s ease;
}

.why-choose-section .feature-item:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

/* About Us Page Feature Items */
.why-choose-section .feature-item i {
    color: var(--bg-white);
    font-size: 1.1rem;
}

/* Home Page Feature Cards */
.features-section .feature-card .feature-icon i {
    color: var(--accent-red);
    font-size: 2rem;
}

/* Tabs Content Feature Items */
.modern-tabs-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.modern-tabs-section .feature-item:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
    border-left: 3px solid var(--accent-red);
}

.modern-tabs-section .feature-item i {
    color: var(--accent-red);
    font-size: 1rem;
}

/* Tabs Content Feature Items - Mobile & Desktop Alignment */
.modern-tabs-section .service-features .feature-item {
    display: block;
    text-align: left;
}

.modern-tabs-section .service-features .feature-item span {
    text-align: left;
    margin-left: 0;
}

.why-choose-section .feature-item span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        text-align: left;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .modern-slider {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-slide .row {
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-slide .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        text-align: center;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
   
    
    .hero-section .carousel-control-prev {
        left: 15px;
    }
    
    .hero-section .carousel-control-next {
        right: 15px;
    }
    

    
    .testimonial-slide {
        padding: 2rem 1rem;
        height: 350px;
        margin: 0 0.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    /* Modern Tabs Responsive */
    .modern-tabs-nav {
        gap: 0.5rem;
        padding: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .modern-tab {
        width: 90px;
        height: 90px;
        padding: 0;
        flex-shrink: 0;
    }
    
    .tab-icon i {
        font-size: 1.25rem;
    }
    
    .tab-label {
        font-size: 0.65rem;
    }
    
    .modern-tab-content {
        padding: 2rem 1.5rem;
    }
    
    .modern-service-content {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .modern-service-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .modern-service-description {
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px;
        min-height: 100vh;
    }
    
    .modern-slider {
        height: 100vh;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-slide .row {
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-slide .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
        margin: 0;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .slide-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .accordion-body {
        font-size: 0.9rem;
        padding: 1rem;
        line-height: 1.6;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .modern-slider {
        height: 93vh;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem 1rem;
        height: 300px;
        margin: 0;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        display: none;
    }
    
    .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators button {
        width: 16px;
        height: 6px;
        margin: 0 2px;
    }
    
    .btn-primary {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Modern Tabs Mobile */
    .modern-tabs-nav {
        padding: 0.5rem;
        gap: 0.25rem;
    }
    
    .modern-tab {
        width: 74px;
        height: 74px;
        padding: 0;
    }
    
    .tab-icon i {
        font-size: 1.1rem;
    }
    
    .tab-label {
        font-size: 0.6rem;
    }
    
    .modern-tab-content {
        padding: 1.5rem 1rem;
    }
    
    .modern-service-title {
        font-size: 1.75rem;
    }
    
    .modern-service-description {
        font-size: 1rem;
    }
} 

/* Responsive adjustments for the connecting line */
@media (max-width: 768px) {
    .how-it-works-section .row::before {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .how-it-works-section .row::before {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    /* width: 4px; */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--btn-red-hover);
}

/* Focus states for accessibility */
.btn:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
} 

/* Create Account Modal */
.create-account-modal {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    background: var(--bg-white);
}

.create-account-modal .modal-header {
    padding: 1.5rem 1.5rem 0;
}

.create-account-modal .btn-close {
    background: var(--text-secondary);
    opacity: 0.6;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    padding: 0;
}

.create-account-modal .btn-close::before,
.create-account-modal .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--text-white);
    transform: translate(-50%, -50%);
}

.create-account-modal .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.create-account-modal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.create-account-modal .btn-close:hover {
    opacity: 1;
    background: var(--accent-red);
}

.modal-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.create-account-form .form-group {
    margin-bottom: 0;
}

.create-account-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 0.3s ease;
    height: auto;
}

.create-account-form .form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.15);
    outline: none;
}

.create-account-form .form-control::placeholder {
    color: var(--text-medium);
    font-weight: 400;
}

.create-account-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239e9c9e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    appearance: none;
}

.terms-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.terms-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: var(--btn-red-hover);
}

.submit-btn {
    background: var(--accent-red);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
    min-width: 200px;
}

.submit-btn:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

.submit-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .create-account-modal .modal-dialog {
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-subtitle {
        font-size: 0.95rem;
    }
    
    .create-account-form .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .create-account-modal .modal-body {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .create-account-form .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
} 

/* Contact Page Styles */
.contact-hero-section {
    background: var(--bg-primary);
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-hero-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Unique Contact Form */
.unique-contact-section {
    background: var(--bg-primary);
    position: relative;
}

.unique-contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-dark);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}


.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon .logo-image {
    width: 300px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.form-icon .logo-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.input-wrapper, .textarea-wrapper {
    position: relative;
}

.input-icon, .textarea-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-red);
    font-size: 1.1rem;
    z-index: 2;
}

.textarea-icon {
    top: 1.5rem;
    transform: none;
}

.unique-input, .unique-textarea {
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 0.3s ease;
    height: auto;
    width: 100%;
}

.unique-textarea {
    padding-left: 3rem;
    padding-top: 1rem;
    resize: vertical;
    min-height: 120px;
}

.unique-input:focus, .unique-textarea:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.15);
    outline: none;
}

.unique-input::placeholder, .unique-textarea::placeholder {
    color: var(--text-medium);
    font-weight: 400;
}

.unique-submit-btn {
    background: var(--accent-red);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
    width: 100%;
    color: var(--text-white);
}

.unique-submit-btn:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
    color: var(--text-white);
}

.unique-submit-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-primary);
}

.contact-info-card {
    padding: 2rem;
    height: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-info-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    .contact-info-card{
        font-size: 15px;
    padding: 2rem 0rem;
    height: 100%;
    }
    .contact-info-card h4{
        font-size: 22px;
    }
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .unique-input, .unique-textarea {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .unique-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .unique-input, .unique-textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .unique-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
} 

/* Pricing Page Styles */
.pricing-hero-section {
    padding-top: 120px;
}

.pricing-hero-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}



/* Pricing Cards */
.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

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

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list li i {
    font-size: 1rem;
    min-width: 16px;
}

.feature-list li i.text-success {
    color: #28a745 !important;
}

.feature-list li i.text-muted {
    color: var(--text-medium) !important;
}

.pricing-footer {
    margin-top: auto;
}

/* Modern Service Pricing Section */
.service-pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-pricing-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-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23b91e26" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.service-pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Pricing Header */
.pricing-header-wrapper {
    position: relative;
}


/* Modern Pricing Cards */
.modern-pricing-card {
    height: 100%;
    transition: all 0.3s ease;
}

.modern-pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.pricing-card-inner {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 86, 34, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

.pricing-card-inner:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(253, 86, 34, 0.3);
}

/* Pricing Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(253, 86, 34, 0.3);
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(253, 86, 34, 0.1) 0%, rgba(253, 86, 34, 0.05) 100%);
    border-radius: 50%;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.service-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing Card Content */
.pricing-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid rgba(253, 86, 34, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(253, 86, 34, 0.05) 0%, rgba(253, 86, 34, 0.02) 100%);
    border-color: rgba(253, 86, 34, 0.2);
    transform: translateX(5px);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.service-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-duration {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.service-price {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(253, 86, 34, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Pricing Card Footer */
.pricing-card-footer {
    margin-top: auto;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 86, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-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;
}

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

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.4);
}

.service-pricing-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.service-pricing-header h4 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.service-pricing-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 10px;
    border-bottom: 1px solid var(--border-light);
}

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

.service-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-price {
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.pricing-cta-section {
    background:var(--accent-red) !important;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--accent-red);
    border: 2px solid white;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--accent-red);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        flex: 1;
        max-width: 150px;
        margin: 0;
        font-size: 14px;
        padding: 0.6rem 1rem;
    }
}

/* Tablet specific styles for CTA buttons */
@media (min-width: 768px) and (max-width: 1024px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        font-size: 15px;
        flex: 1;
        max-width: 200px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .pricing-hero-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
    
    .pricing-title {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        flex: 1;
        width: 140px;
        margin: 0;
        font-size: 12px;
        padding: 0.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modern-feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        padding: 1.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .service-category-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .icon-glow {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-details-container {
        padding: 2rem;
    }
    
    .service-detail-title {
        font-size: 1.6rem;
    }
    
    .modern-tabs-nav {
        padding: 0.5rem;
        gap: 0.25rem;
    }
    
    .modern-tab {
        padding: 0.5rem 0.75rem;
        min-width: 120px;
        gap: 0.5rem;
    }
    
    .tab-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .tab-label {
        font-size: 0.75rem;
    }
    
    .modern-tab-content {
        padding: 2rem;
    }
    
    .modern-service-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .modern-service-title {
        font-size: 1.8rem;
    }
    
    .service-selector-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-categories-grid {
        padding: 1rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .service-category-item {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    
    .category-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .category-info h4 {
        font-size: 0.8rem;
    }
    
    .category-info p {
        font-size: 0.65rem;
    }
    
    .service-details-panel {
        padding: 1.5rem;
    }
    
    .detail-body {
        gap: 1rem;
    }
    
    .detail-image img {
        height: 250px;
        max-width: 100%;
    }
    
    .feature-list {
        gap: 0.4rem;
    }
    
    .detail-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .detail-title-section h3 {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .service-pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
} 

/* Blog Page Styles */
.blog-hero-section {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.blog-hero-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Modern Blog Section */
.recent-blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.recent-blog-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="blog-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23b91e26" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.recent-blog-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(253, 86, 34, 0.03) 0%, transparent 50%);
    transform: rotate(15deg);
    z-index: 1;
}

.recent-blog-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header-wrapper {
    position: relative;
}


/* Blog Grid Wrapper */
.blog-grid-wrapper {
    position: relative;
}

.modern-blog-card {
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card-inner {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(253, 86, 34, 0.1);
}

.blog-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 86, 34, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.blog-card-inner:hover::before {
    left: 100%;
}

.blog-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(253, 86, 34, 0.15);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.blog-card-inner:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(253, 86, 34, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.blog-category-badge i {
    font-size: 0.8rem;
}


.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.blog-meta {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid rgba(253, 86, 34, 0.1);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-date i {
    color: var(--accent-red);
    font-size: 0.7rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: linear-gradient(135deg, rgba(253, 86, 34, 0.1) 0%, rgba(253, 86, 34, 0.05) 100%);
    color: var(--accent-red);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(253, 86, 34, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card-inner:hover .blog-title {
    color: var(--accent-red);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-footer.text-center {
    justify-content: center;
}

.blog-footer.text-center .read-more-btn {
    align-self: center;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-wrapper {
    position: relative;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.author-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.author-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    box-shadow: 0 4px 15px rgba(253, 86, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-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;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Unique Card Animations */
.modern-blog-card:nth-child(1) { animation-delay: 0.1s; }
.modern-blog-card:nth-child(2) { animation-delay: 0.2s; }
.modern-blog-card:nth-child(3) { animation-delay: 0.3s; }

.modern-blog-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.modern-blog-card:hover .blog-card-inner {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(253, 86, 34, 0.3);
}

/* Floating Elements */
.blog-grid-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(253, 86, 34, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    animation: float-slow 6s ease-in-out infinite;
    z-index: 0;
}

.blog-grid-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(253, 86, 34, 0.08) 0%, transparent 100%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .recent-blog-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    
    .blog-card-inner {
        border-radius: 20px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start !important;
    }
    
    .blog-footer.text-center {
        align-items: center;
    }
    
    .read-more-btn {
        align-self: flex-start;
    }
    
    .blog-footer.text-center .read-more-btn {
        align-self: center;
    }
}

.blog-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Featured Blog Card */
.featured-blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.featured-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.featured-blog-image {
    position: relative;
    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.featured-blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-blog-excerpt {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.author-title {
    color: var(--text-medium);
    font-size: 0.8rem;
}

/* Category Cards */
.category-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    width: 65px;
    height: 65px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-count {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.read-more {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--btn-red-hover);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--accent-red) !important;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    background: white;
    color: var(--accent-red);
    border: none;
}

.newsletter-form .btn:hover {
    background: var(--bg-primary);
}

.newsletter-form .form-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .featured-blog-title {
        font-size: 1.5rem;
    }
    
    .featured-blog-content {
        padding: 1.5rem;
    }
    
    .featured-blog-image img {
        height: 300px;
    }
    
    /* Modern Blog Mobile */
    .blog-card-inner {
        border-radius: 15px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
    }
    
    .read-more-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-hero-title {
        font-size: 1.75rem;
    }
    
    .featured-blog-title {
        font-size: 1.25rem;
    }
    
    .featured-blog-content {
        padding: 1rem;
    }
    
    .featured-blog-image img {
        height: 250px;
    }
    
    .blog-meta {
        /* flex-direction: column; */
        gap: 0.5rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
} 

/* About Us Page Styles */
.about-hero-section {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-hero-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mission & Values Section */
.mission-values-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.mission-values-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23b91e26" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.mission-values-section .container {
    position: relative;
    z-index: 2;
}

.modern-value-card {
    height: 100%;
    transition: all 0.3s ease;
}

.value-card-inner {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 86, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card-inner:hover::before {
    left: 100%;
}

.value-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(253, 86, 34, 0.2);
    border-top-color: var(--accent-red);
}

.value-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card-inner:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(253, 86, 34, 0.4);
}

.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card-inner:hover .value-title {
    color: var(--accent-red);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Why Choose Us Section - Modern Design */
.why-choose-section {
    background: #f8f9fa;
    position: relative;
}

.modern-feature-card {
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-inner {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-inner:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); */
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border: 3px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-inner:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(253, 86, 34, 0.3);
}

.feature-badge {
    background: var(--accent-red);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(253, 86, 34, 0.3);
}

.feature-content {
    text-align: left;
}

.feature-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.checklist-item i {
    color: var(--accent-red);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* Our Story Section */
.story-content {
    padding-right: 2rem;
}

.story-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.story-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Mission & Values Section */
.value-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Team Section */
.team-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    position: relative;
    overflow: hidden;
}

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

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

.team-content {
    padding: 1.5rem;
}

.team-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent-red);
    color: white;
}

/* About Us Page Feature Items - Specific Styles */
.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-choose-section .feature-content h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.why-choose-section .feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* About Testimonials */
.about-testimonials-section .testimonial-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.about-testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-testimonials-section .testimonial-content {
    margin-bottom: 1.5rem;
}

.about-testimonials-section .testimonial-content i {
    color: var(--accent-red);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.about-testimonials-section .testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.about-testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-testimonials-section .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.about-testimonials-section .author-info h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.about-testimonials-section .author-info span {
    color: var(--text-medium);
    font-size: 0.8rem;
}

/* About CTA Section */
.about-cta-section {
    background: var(--accent-red) !important;
}

.about-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-section .cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.about-cta-section .cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta-section .cta-buttons .btn-light {
    background: white;
    color: var(--accent-red);
    border: 2px solid white;
}

.about-cta-section .cta-buttons .btn-light:hover {
    background: transparent;
    color: white;
}

.about-cta-section .cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.about-cta-section .cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--accent-red);
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--bg-white);
        border-radius: 10px;
        box-shadow: var(--shadow-light);
    }
    
    /* Mission & Values Mobile */
    .value-card-inner {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    /* Why Choose Us Mobile */
    .feature-card-inner {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .checklist-item {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item {
        /* flex-direction: column; */
        /* text-align: center; */
        gap: 1rem;
    }
    
    .about-cta-section .cta-title {
        font-size: 2rem;
    }
    
    .about-cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta-section .cta-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .story-text {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .team-content {
        padding: 1rem;
    }
    
    .team-image img {
        height: 200px;
    }
    
    .about-testimonials-section .testimonial-card {
        padding: 1.5rem;
    }
    
    .about-cta-section .cta-title {
        font-size: 1.75rem;
    }
} 

/* Blog Inner Page Styles */
.blog-post-hero-section {
    padding-top: 120px;
    /* background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); */
}

.blog-post-header {
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-meta .blog-category {
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-meta .blog-date,
.blog-post-meta .read-time {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-post-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-post-author .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post-author .author-info {
    display: flex;
    flex-direction: column;
}

.blog-post-author .author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.blog-post-author .author-title {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-link {
    width: 35px;
    height: 35px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.share-link:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

/* Blog Post Content */
.blog-post-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.blog-post-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="blog-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23b91e26" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.blog-post-content-section .container {
    position: relative;
    z-index: 2;
}

.blog-post-content {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 86, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-post-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid rgba(253, 86, 34, 0.1);
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-info {
    display: flex;
    /*align-items: center;*/
   
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.article-stats {
    display: flex;
    gap: 1.5rem;
}

.publish-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.publish-date i {
    color: var(--accent-red);
    font-size: 0.8rem;
}


.blog-post-image {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.blog-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 86, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-post-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.blog-post-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    font-size: 1rem;
}

.article-content {
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.article-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Modern Content Boxes */
.modern-content-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 86, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.box-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.tip-box .box-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

.warning-box .box-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

.box-header h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.modern-content-box p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Modern Comparison Table */
.modern-comparison-table {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 86, 34, 0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Responsive Comparison Cards */
@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto 0.75rem;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
    }
    
    .card-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .comparison-cards {
        gap: 1rem;
    }
    
    .comparison-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 auto 0.5rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
    }
}

.comparison-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(253, 86, 34, 0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

/* .diy-card .card-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
}

.professional-card .card-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
} */

.card-header h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.task-list i {
    color: var(--accent-red);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}


.cta-box {
    background: var(--accent-red);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn {
    background: white;
    color: var(--accent-red);
    border: 2px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.article-tags {
    margin-bottom: 2rem;
}

.tag-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 1rem;
}

.tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--accent-red);
    color: white;
    text-decoration: none;
}

.article-author-bio {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.article-author-bio h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.author-bio-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-text h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-bio-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-light);
}

.sidebar-widget h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box .form-control {
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 0.75rem 1rem;
}

.search-box .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--accent-red);
}

.category-list span {
    background: var(--bg-light);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

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

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h6 {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--accent-red);
}

.recent-post-date {
    color: var(--text-medium);
    font-size: 0.8rem;
}

.newsletter-signup .form-control {
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 0.75rem 1rem;
}

.newsletter-signup .btn {
    border-radius: 25px;
    padding: 0.75rem 1rem;
}

/* Related Posts */
.related-post-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-post-image {
    position: relative;
    overflow: hidden;
}

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

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

.related-post-content {
    padding: 1.5rem;
}

.related-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.related-post-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: var(--accent-red);
}

.related-post-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Blog Inner Page */
@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-author {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
    
    .table-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-post-title {
        font-size: 1.75rem;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
    }
    
    .content-box {
        padding: 1rem;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .article-author-bio {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
} 

/* Terms and Conditions Page Styles */
.terms-hero-section {
    padding-top: 120px;
    /* background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); */
}

.terms-hero-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.terms-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.terms-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.last-updated,
.version {
    background: var(--bg-white);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-light);
}

/* Terms Content */
.terms-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}



/* Terms Sections */
.terms-section {
    margin-bottom: 3rem;
    /* padding-bottom: 2rem; */
    border-bottom: 1px solid var(--border-light);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding-top: 1rem;
}

.terms-section h2:first-child {
    padding-top: 0;
}

.terms-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Pricing Details */
.pricing-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-details h4 {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-details ul {
    margin-bottom: 0;
}

.pricing-details li {
    margin-bottom: 0.5rem;
}

/* Scheduling Policy */
.scheduling-policy {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.scheduling-policy h4 {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.scheduling-policy ul {
    margin-bottom: 0;
}

.scheduling-policy li {
    margin-bottom: 0.5rem;
}

.scheduling-policy strong {
    color: var(--text-primary);
}

/* Liability Details */
.liability-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.liability-details h4 {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.liability-details ul {
    margin-bottom: 0;
}

.liability-details li {
    margin-bottom: 0.5rem;
}

/* Privacy Details */
.privacy-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-details h4 {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-details ul {
    margin-bottom: 0;
}

.privacy-details li {
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    border-radius: 10px;
    /* padding: 1.5rem; */
    margin: 1.5rem 0;
}

.contact-item {
    color: white;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}



/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1rem;
    }
    
    .terms-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .terms-content {
        padding: 2rem;
    }
    

    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    

}

@media (max-width: 576px) {
    .terms-hero-title {
        font-size: 1.75rem;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    

    
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .pricing-details,
    .scheduling-policy,
    .liability-details,
    .privacy-details,
    .contact-info {
        padding: 0rem;
    }
    

}

/* User Profile Page Styles */
.profile-hero-section {
    padding-top: 120px;
    /* background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); */
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-light);
}


.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.profile-email {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.profile-stats .stat-item {
    text-align: center;
}

.profile-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.profile-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-actions {
    flex-shrink: 0;
}

.profile-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
}

.profile-actions .btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 86, 34, 0.3);
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.3rem;
    box-shadow: var(--shadow-light);
}

.sidebar-widget h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-actions li {
    margin-bottom: 0.5rem;
}

.quick-actions a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-actions a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.status-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.status-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-value {
    font-weight: 600;
    color: var(--text-primary);
}

.status-value.active {
    color: var(--accent-red);
}

/* Profile Sections */
.profile-section {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

.section-header .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
    font-size: 0.9rem;
}

.section-header .btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.info-item label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    width: 100px;
    text-align: center;
    background: #d4edda;
    color: #155724;
}

.status-badge.paid {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-status {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-status.completed {
    color: #28a745;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-actions {
    flex-shrink: 0;
}

.service-actions .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
    font-size: 0.85rem;
}

.service-actions .btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

/* Appointments */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.appointment-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.appointment-date {
    text-align: center;
    flex-shrink: 0;
}

.date-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.appointment-content {
    flex: 1;
}

.appointment-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.appointment-time,
.appointment-address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.appointment-status {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.appointment-status.scheduled {
    color: #17a2b8;
}

.appointment-status.confirmed {
    color: #28a745;
}

.appointment-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.appointment-actions .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.appointment-actions .btn-outline-primary {
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
}

.appointment-actions .btn-outline-primary:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

.appointment-actions .btn-outline-danger {
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
}

.appointment-actions .btn-outline-danger:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

/* Payments Table */
.payments-table {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
}

.payments-table .table {
    margin: 0;
}

.payments-table th {
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem 0.75rem;
}

.payments-table td {
    border: none;
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.payments-table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.payments-table tbody tr:last-child {
    border-bottom: none;
}

.payments-table .btn {
    padding: 0.4rem 1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    background: transparent;
    font-size: 0.8rem;
}

.payments-table .btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

/* Action Badges */
.action-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-badge.invoice {
    background: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.action-badge.invoice:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(253, 86, 34, 0.3);
}

.action-badge.pay-now {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.action-badge.pay-now:hover {
    background: transparent;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

/* Responsive Design for Profile Page */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .profile-actions {
        width: 100%;
    }
    
    .profile-actions .btn {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .appointment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .appointment-actions {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .profile-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        gap: 0.5rem;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
    
    .service-card,
    .appointment-card {
        padding: 1rem;
    }
    
    .payments-table {
        font-size: 0.9rem;
    }
    
    .payments-table th,
    .payments-table td {
        padding: 0.75rem 0.5rem;
    }
}








/* Payment Authorization Form Styles */
.auth-form-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    position: relative;
}

.auth-form-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23b91e26" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.auth-form-container {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin: 20px auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Form Header */
.auth-form-header {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    color: var(--text-white);
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-pattern {
    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="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.auth-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.auth-form-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-info {
    position: relative;
    z-index: 2;
}

.company-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.company-address,
.company-email {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.company-address i,
.company-email i {
    font-size: 1rem;
    opacity: 0.8;
}

.security-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.security-badge i {
    font-size: 1.1rem;
}

/* Form Sections */
.auth-form {
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 86, 34, 0.3);
}

.section-title-wrapper {
    flex: 1;
}

.section-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 3.3rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

/* Form Labels and Controls */
.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.required {
    color: var(--accent-red);
    font-weight: 700;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 0.9rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 0.3s ease;
    height: auto;
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.25rem rgba(253, 86, 34, 0.15);
    outline: none;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: var(--text-medium);
    font-weight: 400;
    opacity: 0.8;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-red);
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus + .input-icon {
    color: var(--btn-red-hover);
    transform: translateY(-50%) scale(1.1);
}

/* Amount Input */
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: var(--accent-red);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.amount-input {
    padding: 1rem 1rem 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: right;
}

/* Payment Type Section */
.payment-type-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

/* Radio Options */
.payment-type-options,
.payment-method-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
    height: 100%;
}

.radio-label:hover {
    border-color: var(--accent-red);
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.1);
}

.radio-option input[type="radio"]:checked + .radio-label {
    border-color: var(--accent-red);
    background-color: #ece9db5e;
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.15);
    transform: translateY(-2px);
}

.radio-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-medium);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom {
    border-color: var(--accent-red);
    background: var(--accent-red);
}

.radio-option input[type="radio"]:checked + .radio-label .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--text-white);
    border-radius: 50%;
}

.radio-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.radio-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.radio-description {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.card-brands {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.card-brands i {
    font-size: 1.5rem;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-label .card-brands i {
    color: var(--accent-red);
}

/* Recurring Options */
.recurring-options {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #ece9db5e;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.recurring-options .form-control {
    padding-left: 3.5rem;
}

/* Card Details */
.card-details {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #ece9db5e;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.card-details-header h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-info i {
    color: var(--accent-red);
    font-size: 1rem;
}

.form-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-text i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

/* Authorization Section */
.authorization-section {
    /* background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); */
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.authorization-text {
    margin-bottom: 0;
}

.authorization-statement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ece9db5e;

    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.authorization-statement i {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.authorization-statement p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.authorization-summary {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.authorization-summary h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.summary-label {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.summary-label i {
    color: var(--accent-red);
    font-size: 1rem;
}

.summary-value {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1rem;
}

/* Signature Section */
.signature-section {
    margin-top: 0;
}

.signature-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.signature-input {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    padding-left: 3.5rem !important;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-secondary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--text-medium);
    border-color: var(--text-medium);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(158, 156, 158, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--btn-red-hover) 100%);
    border: 2px solid var(--accent-red);
    color: var(--text-white);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(253, 86, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--btn-red-hover) 0%, var(--accent-red) 100%);
    border-color: var(--btn-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(253, 86, 34, 0.4);
}

.form-footer {
    text-align: center;
}

.security-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.security-notice i {
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Responsive Design for Auth Form */
@media (max-width: 768px) {
    .auth-form-section {
        padding: 20px 0;
    }
    
    .auth-form-header {
        padding: 2rem 1rem;
    }
    
    .auth-logo {
        width: 160px;
    }
    
    .auth-form-title {
        font-size: 2rem;
    }
    
    .company-info h3 {
        font-size: 1.5rem;
    }
    
    .auth-form {
        padding: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-type-options,
    .payment-method-options {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .authorization-summary {
        padding: 1.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .card-details-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .authorization-statement {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .auth-form-header {
        padding: 1.5rem 1rem;
    }
    
    .auth-logo {
        width: 140px;
    }
    
    .auth-form-title {
        font-size: 1.75rem;
    }
    
    .company-info h3 {
        font-size: 1.3rem;
    }
    
    .company-address,
    .company-email {
        font-size: 1rem;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        gap: 0.75rem;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .form-control {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 1rem;
        font-size: 1.1rem;
    }
    
    .currency-symbol {
        left: 1rem;
    }
    
    .amount-input {
        padding-left: 2.5rem !important;
    }
    
    .radio-label {
        padding: 1rem;
    }
    
    .radio-label {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .radio-content {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .card-brands {
        justify-content: flex-end;
    }
    
    .card-details {
        padding: 1.5rem;
    }
    
    .authorization-section {
        padding: 1.5rem;
    }
    
    .authorization-statement {
        padding: 1rem;
    }
    
    .authorization-statement p {
        font-size: 0.9rem;
    }
    
    .authorization-summary {
        padding: 1rem;
    }
    
    .summary-item {
        padding: 0.75rem 0;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .security-notice {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Form Validation States */
.form-control.is-valid {
    border-color: #28a745;
    /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15); */
}

.form-control.is-invalid {
    border-color: var(--accent-red);
    /* box-shadow: 0 0 0 0.2rem rgba(253, 86, 34, 0.15); */
}

.was-validated .form-control:valid {
    border-color: #28a745;
    /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15); */
}

.was-validated .form-control:invalid {
    border-color: var(--accent-red);
    /* box-shadow: 0 0 0 0.2rem rgba(253, 86, 34, 0.15); */
}

/* Loading States */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Enhanced Focus States */
.form-control:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 86, 34, 0.15);
}

.radio-label:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 86, 34, 0.15);
}

/* Print Styles */
@media print {
    .auth-form-section {
        padding-top: 0;
        padding-bottom: 0;
        background: white;
    }
    
    .auth-form-container {
        box-shadow: none;
        border: 2px solid #000;
    }
    
    .auth-form-header {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #000;
    }
    
    .auth-logo {
        filter: none !important;
    }
    
    .form-actions {
        display: none;
    }
    
    .btn-secondary,
    .btn-primary {
        display: none;
    }
}

/* Contact Info Section */
.contact-info-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* Professional Cards - Image Style */
.professional-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.card-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}


.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-item i {
    color: var(--accent-red);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.checklist-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

.checklist-item span a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checklist-item span a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* Home Page Contact Info Hover Effect */
.contact-info {
    background: var(--accent-red);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info::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;
}

.contact-info:hover::before {
    left: 100%;
}

.contact-info:hover {
    /*background: white;*/
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent-red);
}

.contact-info:hover .phone-number,
.contact-info:hover .availability {
    color: var(--text-primary);
}

.contact-info:hover .phone-number i,
.contact-info:hover .availability i {
    color: var(--accent-red);
}

.contact-info:hover .phone-number a {
    color: var(--accent-red);
}

.phone-number,
.availability {
    color: white;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.phone-number:last-child,
.availability:last-child {
    margin-bottom: 0;
}

.phone-number i,
.availability i {
    color: white;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.phone-number strong,
.availability {
    font-weight: 600;
    font-size: 1rem;
}

.phone-number a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* Get Free Quote Button - Image Style */
.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-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;
}

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

.quote-btn:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.quote-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quote-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .professional-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-icon i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .professional-card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .checklist-item span {
        font-size: 0.85rem;
    }
}

/* Modern Contact Section */
.modern-contact-section {
    background: white;
    padding: 4rem 0;
}

.contact-info-column {
    padding: 2rem 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top-color: var(--accent-red);
}

.contact-card-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.contact-card-icon i {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.contact-card-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    background: rgba(253, 86, 34, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.contact-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-card-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-detail-item i {
    color: var(--accent-red);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.contact-detail-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-detail-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--accent-red);
}

.contact-heading {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}


.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-red);
}

.social-media-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    color: white;
}

.contact-form-column {
    background: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modern-contact-form .form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 0.2rem rgba(253, 86, 34, 0.15);
    outline: none;
}

.modern-contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fd5622'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.modern-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.submit-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: var(--btn-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 86, 34, 0.3);
    color:white;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-red);
}

.privacy-checkbox label {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    cursor: pointer;
}
@media(max-width:1200px){
    .blog-footer {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
        flex-direction: column;
        gap: 21px;
        row-gap: 21px;
        column-gap: 21px;
    }
    .contact-heading {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}
.contact-description{
    margin-bottom:0.5rem;
}
}

/* Modern Contact Section Responsive */
@media (max-width: 768px) {
    .modern-contact-section {
        padding: 3rem 0;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form-column {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info-cards {
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-card-icon i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-card-icon::after {
        width: 45px;
        height: 45px;
        top: 4px;
        left: 4px;
    }
    
    .contact-card-title {
        font-size: 1.1rem;
    }
    
    .contact-card-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}