/* ==========================================================================
   Home Page Redesign CSS (Premium Healthcare Aesthetics)
   ========================================================================== */

:root {
    --primary-blue: #005298;
    --primary-dark: #003b6e;
    --primary-light: #0069c7;
    --accent-color: #f0a500;
    --accent-light: #fef0c7;
    --text-main: #18100f;
    --text-muted: #666666;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* Base Styles */
.home-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.home-page p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Shared Components */
.home-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.home-section-tag {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background-color: #ffffff;
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(0, 82, 152, 0.15);
}

.bg-light .home-section-tag {
    background-color: #ffffff;
}

.bg-white .home-section-tag {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.bg-dark .home-section-title,
.bg-dark .home-section-desc,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-light);
}

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

.home-section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.home-section-title span {
    color: var(--primary-blue);
}

.home-section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.home-section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005298, #f0a500);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Dark Section Utilities */
.home-section-dark {
    color: var(--bg-white);
}

.home-section-dark .home-section-title,
.home-section-dark .home-section-desc,
.home-section-dark h1,
.home-section-dark h2,
.home-section-dark h3,
.home-section-dark h4,
.home-section-dark h5,
.home-section-dark h6 {
    color: var(--bg-white);
}

.home-section-dark .home-section-title span {
    color: #60a5fa;
    /* lighter blue for contrast */
}

.home-section-dark .home-section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

/* Ensure cards inside dark sections remain legible */
.home-section-dark .home-feature-card,
.home-section-dark .home-service-card,
.home-section-dark .home-tech-card,
.home-section-dark .home-testimonial-card,
.home-section-dark .home-result-card,
.home-section-dark .home-pricing-card {
    background-color: var(--bg-white);
    color: var(--text-main);
}

.home-section-dark .home-feature-card h4,
.home-section-dark .home-service-card h4,
.home-section-dark .home-tech-card h5,
.home-section-dark .home-testimonial-card strong,
.home-section-dark .home-result-card h5 {
    color: var(--text-main);
}

.home-section-dark .home-feature-card p,
.home-section-dark .home-service-card p,
.home-section-dark .home-tech-card p,
.home-section-dark .home-testimonial-card p {
    color: var(--text-muted);
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--bg-white);
    cursor: pointer;
}

.home-btn-primary:hover {
    border: 2px solid var(--bg-white);
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.home-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
    cursor: pointer;
}

.home-btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* Hero Section */
.home-hero {
    padding: 40px 35px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}


.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg-1.png") center/50% repeat;
    opacity: 0.1;
    pointer-events: none;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.home-hero h1 span {
    color: var(--accent-color);
}

.home-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.88) !important;
}

.home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
}

.home-hero-stat .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
}

.home-hero-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.home-hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust-indicators {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.google-review-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    backdrop-filter: blur(10px);
    width: max-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.google-review-badge .g-icon {
    width: 36px;
    height: 36px;
    background: white;
    padding: 7px;
    border-radius: 8px;
    margin-right: 12px;
}

.g-review-info {
    display: flex;
    flex-direction: column;
}

.g-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.g-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.g-score {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.g-stars {
    display: flex;
    color: #fbbf24;
    font-size: 0.85rem;
    gap: 2px;
}

.customer-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 5px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #2d639b;
    /* Border matching darker hero background */
    margin-left: -12px;
    object-fit: cover;
    background-color: var(--bg-white);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.customer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.customer-text strong {
    color: white;
    font-weight: 700;
}

.home-hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-hero-form-card {
    background: var(--bg-white);
    padding: 10px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.home-form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.home-form-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.home-form-group {
    margin-bottom: 1rem;
}

.home-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.home-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.home-form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.home-form-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.home-form-submit-btn:hover {
    background-color: var(--primary-dark);
}

.home-form-trust {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.home-why-section {
    padding: 4rem 0;
}

.home-feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.home-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.home-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(0, 82, 152, 0.12);
}

.home-feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ============================================
   Services Section
   ============================================ */
.home-services-section {
    padding: 0 0 60px;
}

/* Column wrapper: stretch link to full height */
.home-service-card-link {
    display: flex;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
    outline: none;
}

.home-service-card-link:hover,
.home-service-card-link:focus {
    text-decoration: none !important;
    color: inherit !important;
}

/* Fixed-height card with flex column layout */
.home-service-card {
    background: var(--bg-white);
    padding: 0px 1.5rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 82, 152, 0.07);
    transition: var(--transition);
    width: 100%;
    height: 290px;              /* fixed card height */
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;           /* clip anything beyond fixed height */
}

.home-service-card-link:hover .home-service-card {
    box-shadow: 0 8px 32px rgba(0, 82, 152, 0.18);
    border-top-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* Circular icon container – always centered */
.home-service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    border: 2px solid rgba(0, 82, 152, 0.1);
    transition: var(--transition);
}

.home-service-card-link:hover .home-service-icon {
    background: rgba(0, 82, 152, 0.08);
    border-color: rgba(0, 82, 152, 0.3);
    transform: scale(1.08);
}

.home-service-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

/* Service name */
.home-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.35;
    flex-shrink: 0;
}

/* Description: plain text, clamped to 3 lines with … */
.home-service-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0 !important;
    /* 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* fallback for non-webkit */
    max-height: calc(3em * 3);
}
/* Transformation Journey */
.home-journey-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.home-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.home-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: var(--primary-light);
}

.home-timeline-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 70px;
}

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

.home-timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 0 0 4px var(--bg-white), 0 0 0 6px var(--primary-light);
}

.home-timeline-content {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.home-timeline-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Results Gallery */
.home-results-section {
    padding: 30px 0 60px;
}

.home-result-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    color: var(--text-main);
    box-shadow: 0 6px 30px rgba(0, 82, 152, 0.1);
    border: 1px solid var(--border-color);
}

.home-result-img-wrapper {
    position: relative;
    padding-top: 60%;
    /* 16:9 Aspect Ratio */
    background: #ccc;
}

.home-result-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-result-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.home-result-info {
    padding: 1.5rem;
}

.home-result-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.home-result-stat-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.home-result-stat-item strong {
    font-size: 0.875rem;
    color: var(--primary-blue);
}

/* Meet Doctor */
.home-doctor-section {
    padding: 0 0 60px;
}

.home-doctor-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-doctor-img-wrapper img {
    width: 100%;
    display: block;
}

.home-doctor-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: home-float 4s ease-in-out infinite;
}

.home-doctor-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.home-doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.home-credential-chip {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Technology Section */
.home-tech-section {
    padding: 30px 0 60px;
}

.home-tech-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.home-tech-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.home-tech-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Treatment Process (Horizontal) */
.home-process-section {
    padding: 30px 0 60px;
}

.home-process-wrapper {
    position: relative;
}

.home-process-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-color), var(--primary-blue));
    z-index: 0;
}

@media (max-width: 991px) {
    .home-process-wrapper::before {
        display: none;
    }
}

.home-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    margin-bottom: 2rem;
}

.home-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 82, 152, 0.35);
    position: relative;
    transition: var(--transition);
}

.home-process-step:hover .home-step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 82, 152, 0.45);
}

.home-step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(0, 82, 152, 0.25);
}

.home-process-step h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.home-process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Testimonials */
.home-testimonials-section {
    padding: 0 0 60px;
}

.home-testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.home-testimonial-quote {
    color: var(--primary-light);
    font-size: 3rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
}

.home-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.home-testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    overflow: hidden;
}

.home-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section - Split Layout */
.home-faq-section {
    padding: 0 0 60px;
}

.home-faq-accordion .accordion-item {
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--bg-white);
    transition: var(--transition);
}

.home-faq-accordion .accordion-item:hover {
    border-color: rgba(0, 82, 152, 0.2);
    box-shadow: 0 4px 16px rgba(0, 82, 152, 0.08);
}

.home-faq-accordion .accordion-button {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--border-radius) !important;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: var(--bg-light);
    box-shadow: none;
}

.home-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 82, 152, 0.2);
}

.home-faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 24px 22px;
}

/* Location Map Section */
.home-location-section {
    padding: 0 0 60px;
}

.home-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 82, 152, 0.12);
}

.home-map-wrapper iframe {
    width: 100%;
    height: 440px;
    border: 0;
    display: block;
}

.home-contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0, 82, 152, 0.12);
    height: 100%;
    border: 1.5px solid rgba(0, 82, 152, 0.08);
}

.home-contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.home-branch-tag {
    background: var(--bg-light);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
}

.home-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--border-color);
}

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

.home-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-contact-icon i {
    font-size: 18px;
    color: var(--primary-blue);
}

.home-contact-detail .detail-label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.home-contact-detail .detail-value {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.5;
}

.home-contact-detail a {
    color: var(--text-main);
    transition: var(--transition);
}

.home-contact-detail a:hover {
    color: var(--primary-blue);
}

/* Blogs Section */
.home-blogs-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.home-blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.home-blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.home-blog-img {
    height: 200px;
    background: #ccc;
}

.home-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-content {
    padding: 1.5rem;
}

.home-blog-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

/* CTA Banner */
.home-cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    color: var(--bg-white);
    text-align: center;
}
.home-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg-1.png") center/50% repeat;
    opacity: 0.1;
    pointer-events: none;
}

.home-cta-banner h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.home-cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .home-hero {
        padding: 4rem 0;
    }

    .home-hero h1 {
        font-size: 2.75rem;
    }

    .home-hero-stats,
    .hero-trust-indicators {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding: 40px 0 50px !important;
    }

    /* .home-hero-badge {
        margin: 0 auto 1.5rem;
    }

    .home-hero-subtitle {
        margin: 0 auto 2rem;
    } */

    .home-hero-stats {
        justify-content: center;
    }

    /* .hero-trust-indicators {
        align-items: center;
    } */

    /* .home-hero-cta-group {
        justify-content: center;
        margin-bottom: 3rem;
    } */

    .home-section-title {
        font-size: 2rem;
    }

    .home-timeline::before {
        left: 20px;
    }

    .home-timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .home-timeline-step {
        padding-left: 60px;
    }
}

@media (max-width: 575px) {
    .home-why-section {
        padding: 30px 0 !important;
    }
    .home-feature-card{
        padding: 1rem !important;
    }
    .home-services-section {
        padding: 30px 0 !important;
    }
    .home-cta-banner {
        padding: 30px 0 !important;
    }
    .home-results-section{
        padding: 30px 0 !important;
    }
    .home-process-section{
        padding: 30px 0 !important;
    }
    .home-tech-section{
        padding: 30px 0 !important;
    }
    .home-faq-section{
        padding: 30px 0 !important;
    }
    .home-location-section{
        padding: 30px 0 !important;
    }
    .home-blog-section{
        padding: 30px 0 !important;
    }
    .home-responsive-row{
        --bs-gutter-y: 0.2rem !important;
        --bs-gutter-x: 0.2rem !important;
    }
    .home-hero-stats {
        justify-content: flex-start;
    }
}

.iti__country-name {
    color: #999;
}
.home-blog-section {
    padding: 0 0 60px;
}
#pinquiryform .error {
    color: #ff0000;
}


@keyframes home-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}
