/* =========================================
   BRIGHT ANGEL - PREMIUM AGENCY UI
   ========================================= */

:root {
    --primary-color: #004aad; /* Deeper, more corporate trust blue */
    --secondary-color: #1a73e8; /* Vibrant accent blue */
    --accent-color: #e63946; /* Action red */
    --text-dark: #1e293b; /* Sophisticated slate dark */
    --text-muted: #64748b; /* Professional slate gray */
    --bg-light: #f8fafc;
    --white: #ffffff;
}

/* --- Hero Section --- */
.hero-wrapper {
    padding: 160px 20px 80px 20px; 
    background: var(--white);
    margin-top: 0;
}

/* Premium Trust Badge */
.premium-badge {
    display: inline-block;
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

h1.hero-heading {
    color: var(--text-dark);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Premium deep shadow */
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* --- Hero Action Buttons --- */
.hero-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-custom {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
    border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(26, 115, 232, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.15);
}

/* --- Corporate Impact Stats Bar --- */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 0;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* --- ABOUT & EXPERTISE SECTION --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.global-presence-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.country-badge {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.country-badge i {
    color: var(--primary-color);
}

.country-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.country-badge:hover i {
    color: var(--white);
}

/* Corporate Expertise Cards */
.expertise-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle primary color bottom accent border */
.expertise-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.expertise-box:hover {
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: transparent;
}

.expertise-box:hover::after {
    transform: scaleX(1);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.expertise-box:hover .expertise-icon {
    background: var(--primary-color);
    color: var(--white);
}

.expertise-box h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.expertise-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Clients Section --- */
.employers-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.employer-logo-card {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    height: 100px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.employer-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.employer-logo-card img {
    max-width: 100%;
    max-height: 60px; 
    object-fit: contain;
    transition: transform 0.3s ease;
}

.employer-logo-card:hover img {
    transform: scale(1.05);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-wrapper {
        padding-top: 130px; 
    }
    h1.hero-heading {
        font-size: 2.4rem;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-action-buttons {
        justify-content: center;
    }
    .premium-badge {
        display: block;
        margin: 0 auto 20px auto;
        width: fit-content;
    }
    .hero-image {
        margin-top: 50px;
    }
    .stat-item {
        margin-bottom: 30px;
    }
    .stat-item:last-child {
        margin-bottom: 0;
    }
    .about-content {
        text-align: center;
    }
    .global-presence-badges {
        justify-content: center;
    }
    .logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

/* =========================================
   BRIGHT ANGEL - EMPLOYER'S FEEDBACK
   ========================================= */

.feedback-section {
    background-color: #f8f9fa; /* Soft contrast from the white logo section */
    padding: 80px 0;
    overflow: hidden;
}

.feedback-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    margin: 15px; /* Creates spacing between carousel items */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #004aad; /* Corporate Blue Accent */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 74, 173, 0.15);
    margin-bottom: 20px;
}

.feedback-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 25px;
}

.feedback-author {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.feedback-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.feedback-author span {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- Slick Slider Pagination Dots Styling FIX --- */
.feedback-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

/* Turn the numbers into clean circles */
.feedback-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent; /* Hides the text numbers */
    border: 0;
    outline: none;
    background: #cbd5e1; /* Inactive dot color (Light Grey) */
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Style the Active Dot */
.feedback-slider .slick-dots li.slick-active button {
    background: #ef4444; /* Bright Angel Red */
    transform: scale(1.3);
}

/* Optional hover state for dots */
.feedback-slider .slick-dots li button:hover,
.feedback-slider .slick-dots li button:focus {
    outline: none;
    background: #94a3b8;
}