/* GFS Research Custom Styles */

/* Logo sizing */
.header-logo a {
    display: inline-block;
}
.header-logo a img {
    height: 36px;
    width: auto;
    min-width: 100px;
    object-fit: contain;
    display: block;
}
/* Homepage dark header - force white logo */
.azzle-header-section.section2 .header-logo a img {
    filter: brightness(0) invert(1);
    height: 36px;
    width: auto;
    min-width: 100px;
}
.mobile-logo a img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}
.azzle-footer-bottom-logo a img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Language Switcher */
.gfs-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gfs-lang-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}
.gfs-lang-switcher a:hover,
.gfs-lang-switcher a.active {
    background: var(--accent-color, #00D4AA);
    border-color: var(--accent-color, #00D4AA);
    color: #fff;
}

/* Inner page lang switcher (dark text) */
.header-light .gfs-lang-switcher a {
    color: #333;
    border-color: rgba(0,0,0,0.2);
}
.header-light .gfs-lang-switcher a:hover,
.header-light .gfs-lang-switcher a.active {
    background: var(--accent-color, #00D4AA);
    border-color: var(--accent-color, #00D4AA);
    color: #fff;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--heading-bg, #1a1a2e);
    color: #fff;
    padding: 20px 0;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-consent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}
.cookie-consent button {
    white-space: nowrap;
}

/* Process Section */
.gfs-process-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.gfs-process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color, #00D4AA);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'ClashDisplayMedium', sans-serif;
}
.gfs-process-item h4 {
    margin-bottom: 12px;
    font-family: 'ClashDisplayMedium', sans-serif;
}
.gfs-process-item p {
    font-size: 15px;
    color: #666;
}
.gfs-process-item::after {
    content: '\2192';
    position: absolute;
    right: -15px;
    top: 50px;
    font-size: 24px;
    color: var(--accent-color, #00D4AA);
}
.gfs-process-item:last-child::after {
    display: none;
}

/* Trust/ISO Section */
.gfs-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.gfs-trust-badge {
    text-align: center;
}
.gfs-trust-badge img {
    max-height: 100px;
    margin-bottom: 15px;
}

/* Service Cards Enhancement */
.gfs-service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gfs-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Counter */
.gfs-stats-section {
    background: linear-gradient(135deg, var(--heading-bg, #1a1a2e) 0%, #16213e 100%);
}

/* Why Choose List */
.gfs-check-list {
    list-style: none;
    padding: 0;
}
.gfs-check-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 16px;
}
.gfs-check-list li::before {
    content: '\eb7b';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    color: var(--accent-color, #00D4AA);
    font-size: 18px;
}

/* ===== COLOR FIXES ===== */

/* RemixIcon - accent color in icon boxes and content sections */
.azzle-iconbox-icon3 i[class^="ri-"],
.azzle-iconbox-icon3 i[class*=" ri-"],
.azzle-section-padding > .container i[class^="ri-"],
.azzle-section-padding > .container i[class*=" ri-"] {
    color: var(--accent-color, #00D4AA) !important;
}
/* Exception: mobile menu close icon stays inherited */
.azzle-menu-wrapper i.ri-close-line {
    color: #333 !important;
}

/* Icon box card text - always dark/readable */
.azzle-iconbox-content3 h3,
.azzle-iconbox-content3 h4 {
    color: var(--heading-bg, #1a1a2e) !important;
    font-weight: 500;
    font-family: "ClashDisplayMedium", sans-serif;
    padding-bottom: 10px;
}
.azzle-iconbox-content3 p {
    color: #555 !important;
}

/* List icon bullets - accent dot, dark text */
.azzle-section-padding .azzle-listicon-wrap2 ul li h3 {
    color: var(--heading-bg, #1a1a2e) !important;
}
.azzle-section-padding .azzle-listicon-wrap2 ul li::before {
    background-color: var(--accent-color, #00D4AA) !important;
}
/* Exception: integration-section has dark bg, keep white text */
.integration-section .azzle-listicon-wrap2 ul li h3 {
    color: #fff !important;
}

/* Breadcrumb */
.azzle-breadcrumb-title {
    color: var(--heading-bg, #1a1a2e);
}
.azzle-breadcrumb-menu ul li,
.azzle-breadcrumb-menu ul li a {
    color: #555;
}

/* Contact section */
.contact-section .azzle-contact-info-item h5 {
    color: var(--accent-color, #00D4AA);
}

/* Language Checkbox Grid */
.gfs-language-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.gfs-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    background: #fff;
}
.gfs-checkbox-label:hover {
    border-color: var(--accent-color, #00D4AA);
    background: rgba(254, 51, 10, 0.03);
}
.gfs-checkbox-label input[type="checkbox"] {
    accent-color: var(--accent-color, #00D4AA);
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.gfs-checkbox-label input[type="checkbox"]:checked + span {
    color: var(--accent-color, #00D4AA);
    font-weight: 600;
}

/* Select Dropdown Styling */
.azzle-contact-field select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #333;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L.3 3.125l.7-.7L6 7.425l5-5 .7.7z'/%3E%3C/svg%3E") no-repeat right 16px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.azzle-contact-field select:focus {
    outline: none;
    border-color: var(--accent-color, #00D4AA);
}

/* File Upload Styling */
.gfs-file-upload {
    position: relative;
}
.gfs-file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.gfs-file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    border: 2px dashed rgba(0,0,0,0.15);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
    color: #666;
    font-size: 15px;
}
.gfs-file-upload-label i {
    font-size: 28px;
    color: var(--accent-color, #00D4AA);
}
.gfs-file-upload:hover .gfs-file-upload-label {
    border-color: var(--accent-color, #00D4AA);
    background: rgba(0, 212, 170, 0.03);
}
/* File selected state */
.gfs-file-upload-label #cv-filename {
    word-break: break-all;
}

/* Contact Info Wrap for Interviewers */
.azzle-contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.azzle-contact-info-item h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--accent-color, #00D4AA);
}
.azzle-contact-info-item a,
.azzle-contact-info-item p {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    margin: 0;
}
.azzle-contact-info-item a:hover {
    color: var(--accent-color, #00D4AA);
}

/* Mobile */
@media (max-width: 991px) {
    .gfs-lang-switcher {
        margin-top: 15px;
        justify-content: center;
    }
    .gfs-process-item::after {
        display: none;
    }
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .gfs-trust-badges {
        gap: 20px;
    }
    .gfs-language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gfs-language-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .gfs-language-grid {
        grid-template-columns: 1fr;
    }
    .gfs-process-item {
        padding: 20px 10px;
    }
    .gfs-trust-badges {
        gap: 15px;
    }
}

/* Popup Notification */
.gfs-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gfs-popup-overlay.active { opacity: 1; }
.gfs-popup {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.gfs-popup-overlay.active .gfs-popup { transform: scale(1); }
.gfs-popup-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none; border: none;
    font-size: 28px; color: #999;
    cursor: pointer; line-height: 1;
}
.gfs-popup-close:hover { color: #333; }
.gfs-popup-icon { margin-bottom: 20px; }
.gfs-popup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-family: 'ClashDisplayMedium', sans-serif;
}
.gfs-popup-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}
.gfs-popup-btn {
    display: inline-block;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}
.gfs-popup-btn.success { background: #00D4AA; }
.gfs-popup-btn.success:hover { background: #00b894; }
.gfs-popup-btn.error { background: #ef4444; }
.gfs-popup-btn.error:hover { background: #dc2626; }

/* ===== BLOG SINGLE ===== */
.gfs-blog-featured img { width: 100%; border-radius: 12px; }
.gfs-blog-meta { display: flex; gap: 20px; flex-wrap: wrap; color: #888; font-size: 14px; }
.gfs-blog-meta i { margin-right: 4px; color: var(--accent-color, #00D4AA); }
.gfs-blog-title { font-size: 32px; margin: 15px 0 30px; color: var(--heading-bg, #1a1a2e); line-height: 1.3; }
.gfs-blog-content { font-size: 17px; line-height: 1.8; color: #444; }
.gfs-blog-content p { margin-bottom: 20px; }
.gfs-blog-content h2, .gfs-blog-content h3 { color: var(--heading-bg, #1a1a2e); margin: 30px 0 15px; font-family: 'ClashDisplayMedium', sans-serif; }
.gfs-blog-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }
.gfs-blog-content blockquote { border-left: 4px solid var(--accent-color, #00D4AA); padding: 15px 25px; margin: 25px 0; background: #f8f9fa; border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.gfs-blog-content ul, .gfs-blog-content ol { padding-left: 25px; margin-bottom: 20px; }
.gfs-blog-content li { margin-bottom: 8px; }

/* Blog Share - Professional inline style */
.gfs-blog-share { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.gfs-blog-share h5 { font-size: 14px; margin: 0; color: #999; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.gfs-share-links { display: flex; gap: 6px; }
.gfs-share-btn { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s; text-decoration: none; background: #f0f0f0; color: #555; }
.gfs-share-btn:hover { color: #fff; }
.gfs-share-btn.facebook:hover { background: #1877f2; }
.gfs-share-btn.twitter:hover { background: #000; }
.gfs-share-btn.linkedin:hover { background: #0a66c2; }
.gfs-share-btn.email:hover { background: var(--accent-color, #00D4AA); }

/* Blog Sidebar */
.gfs-blog-sidebar { position: sticky; top: 100px; }
.gfs-sidebar-widget { background: #f8f9fa; border-radius: 12px; padding: 25px; margin-bottom: 25px; }
.gfs-sidebar-widget h4 { font-size: 18px; font-family: 'ClashDisplayMedium', sans-serif; margin-bottom: 15px; color: var(--heading-bg, #1a1a2e); padding-bottom: 12px; border-bottom: 2px solid #eee; }
.gfs-sidebar-widget p { font-size: 14px; color: #666; line-height: 1.6; }
.gfs-sidebar-link { font-size: 14px; font-weight: 600; color: var(--accent-color, #00D4AA); text-decoration: none; }
.gfs-sidebar-link:hover { text-decoration: underline; }
.gfs-sidebar-link i { margin-left: 4px; }

/* Sidebar Posts */
.gfs-sidebar-post { display: flex; gap: 12px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.gfs-sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.gfs-sidebar-post-thumb { width: 70px; height: 55px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.gfs-sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gfs-sidebar-post-date { font-size: 12px; color: #999; }
.gfs-sidebar-post-info h5 { font-size: 14px; line-height: 1.4; margin: 4px 0 0; }
.gfs-sidebar-post-info h5 a { color: var(--heading-bg, #1a1a2e); text-decoration: none; }
.gfs-sidebar-post-info h5 a:hover { color: var(--accent-color, #00D4AA); }

/* Sidebar Categories */
.gfs-sidebar-categories { list-style: none; padding: 0; margin: 0; }
.gfs-sidebar-categories li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #555; }
.gfs-sidebar-categories li:last-child { border-bottom: none; }
.gfs-cat-count { background: var(--accent-color, #00D4AA); color: #fff; font-size: 12px; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Sidebar CTA */
.gfs-sidebar-cta { background: var(--heading-bg, #1a1a2e); color: #fff; border-radius: 12px; padding: 30px 25px; text-align: center; }
.gfs-sidebar-cta h4 { color: #fff; font-size: 20px; margin-bottom: 10px; font-family: 'ClashDisplayMedium', sans-serif; border: none; padding: 0; }
.gfs-sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }

/* ===== BLOG LIST ===== */

/* Featured Card */
.gfs-blog-featured-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.gfs-blog-featured-thumb { position: relative; overflow: hidden; height: 320px; }
.gfs-blog-featured-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gfs-blog-featured-card:hover .gfs-blog-featured-thumb img { transform: scale(1.05); }
.gfs-blog-featured-body { padding: 30px; }
.gfs-blog-featured-body h2 { font-size: 24px; margin: 10px 0 12px; font-family: 'ClashDisplayMedium', sans-serif; line-height: 1.3; }
.gfs-blog-featured-body h2 a { color: var(--heading-bg, #1a1a2e); text-decoration: none; }
.gfs-blog-featured-body h2 a:hover { color: var(--accent-color, #00D4AA); }
.gfs-blog-featured-body p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 15px; }

/* Blog Badge */
.gfs-blog-badge { position: absolute; top: 15px; left: 15px; background: var(--accent-color, #00D4AA); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Blog Cards */
.gfs-blog-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.3s; height: 100%; display: flex; flex-direction: column; }
.gfs-blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.gfs-blog-card-thumb { position: relative; overflow: hidden; height: 200px; }
.gfs-blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gfs-blog-card:hover .gfs-blog-card-thumb img { transform: scale(1.05); }
.gfs-blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.gfs-blog-card-body h4 { font-size: 18px; margin: 8px 0 10px; font-family: 'ClashDisplayMedium', sans-serif; line-height: 1.4; }
.gfs-blog-card-body h4 a { color: var(--heading-bg, #1a1a2e); text-decoration: none; }
.gfs-blog-card-body h4 a:hover { color: var(--accent-color, #00D4AA); }
.gfs-blog-card-body p { color: #777; font-size: 14px; line-height: 1.5; margin-bottom: 15px; flex: 1; }

/* Read More */
.gfs-read-more { font-size: 14px; font-weight: 600; color: var(--accent-color, #00D4AA); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s; }
.gfs-read-more:hover { gap: 10px; color: var(--accent-color, #00D4AA); }

/* Pagination */
.gfs-pagination { display: flex; justify-content: center; gap: 8px; }
.gfs-page-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #f0f0f0; color: #555; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.gfs-page-btn:hover, .gfs-page-btn.active { background: var(--accent-color, #00D4AA); color: #fff; }

/* Search Box */
.gfs-search-box { position: relative; }
.gfs-search-box input { width: 100%; padding: 12px 45px 12px 18px; border: 2px solid #eee; border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.3s; background: #fff; }
.gfs-search-box input:focus { border-color: var(--accent-color, #00D4AA); }
.gfs-search-box i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #999; font-size: 18px; }

/* Subscribe Input */
.gfs-subscribe-input { display: flex; gap: 0; }
.gfs-subscribe-input input { flex: 1; padding: 10px 15px; border: 2px solid rgba(255,255,255,0.2); border-radius: 8px 0 0 8px; background: rgba(255,255,255,0.1); color: #fff; font-size: 14px; outline: none; }
.gfs-subscribe-input input::placeholder { color: rgba(255,255,255,0.5); }
.gfs-subscribe-input input:focus { border-color: var(--accent-color, #00D4AA); }
.gfs-subscribe-input button { padding: 10px 18px; border: none; background: var(--accent-color, #00D4AA); color: #fff; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 16px; transition: background 0.3s; }
.gfs-subscribe-input button:hover { background: #00b894; }

@media (max-width: 991px) {
    .gfs-blog-title { font-size: 24px; }
    .gfs-blog-sidebar { position: static; margin-top: 40px; }
    .gfs-blog-featured-thumb { height: 220px; }
    .gfs-blog-share { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* Hero subtitle */
.azzle-hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color, #00D4AA);
    margin-bottom: 15px;
    font-family: 'ClashDisplayMedium', sans-serif;
}

/* Utility spacing */
.pb-50 { padding-bottom: 50px; }
.mt-30 { margin-top: 30px; }

/* CTA Marquee Section */
.azzle-cta-marquee-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    background: var(--heading-bg, #000);
}
.azzle-cta-marquee-section .azzle-footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.azzle-cta-marquee-section .azzle-footer-shape img {
    width: 100%;
}
.azzle-cta-marquee-section .azzle-cta-slider-init {
    position: relative;
    z-index: 2;
}
.azzle-cta-marquee-section .azzle-cta-slider-title {
    color: var(--light-color, #fff);
    font-family: "ClashDisplayMedium", sans-serif;
}