/*=============================================
  VikMac Ajiralink - Recruitment Services Styles
  Comprehensive styling for recruitment services
  
  Color Palette:
  - Primary Dark: #201f51 (Navy)
  - Primary Gold: #c9a227 (Gold)
  - Accent Green: #25d366 (WhatsApp Green)
  - Light Green: rgba(37, 211, 102, 0.1)
=============================================*/

/* Green Accent Variables */
:root {
    --accent-green: #25d366;
    --accent-green-dark: #128c7e;
    --accent-green-light: rgba(37, 211, 102, 0.1);
    --accent-green-glow: rgba(37, 211, 102, 0.3);
}

/*=============================================
  Green Accent Elements - LIMITED USE
  Only on WhatsApp buttons/links and specific CTAs
=============================================*/

/* WhatsApp buttons and links ONLY */
.btn-whatsapp,
.whatsapp-link,
.contact-link.whatsapp {
    background: var(--accent-green) !important;
    color: #ffffff !important;
}

.btn-whatsapp:hover,
.whatsapp-link:hover,
.contact-link.whatsapp:hover {
    background: var(--accent-green-dark) !important;
    color: #ffffff !important;
}

/* WhatsApp floating button */
.whatsapp-float {
    background: var(--accent-green) !important;
    box-shadow: 0 4px 20px -5px var(--accent-green-glow);
}

.whatsapp-float:hover {
    background: var(--accent-green-dark) !important;
    transform: scale(1.1);
}

/* WhatsApp icon color when inline */
.bxl-whatsapp {
    color: var(--accent-green);
}

/* Apply button in service details - green accent */
.btn-apply-whatsapp {
    background: var(--accent-green) !important;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply-whatsapp:hover {
    background: var(--accent-green-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Recruitment Services Section */
.recruitment-services-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* Recruitment Service Card */
.recruitment-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.recruitment-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--service-color, #c9a227);
    transition: height 0.3s ease;
}

.recruitment-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.15);
}

.recruitment-service-card:hover::before {
    height: 6px;
}

.recruitment-service-card .service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.recruitment-service-card .service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--service-color, #c9a227);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.recruitment-service-card .service-icon-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.recruitment-service-card .service-icon-wrap i {
    font-size: 1.8rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.recruitment-service-card .service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.recruitment-service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #201f51;
    margin-bottom: 12px;
}

.recruitment-service-card .service-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recruitment-service-card .service-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment-service-card .service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.recruitment-service-card .service-checklist li:last-child {
    margin-bottom: 0;
}

.recruitment-service-card .service-checklist li i {
    color: #c9a227;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Hover effect on icon */
.recruitment-service-card:hover .service-icon-wrap {
    box-shadow: 0 10px 30px -10px var(--service-color, #c9a227);
    transform: scale(1.05);
}

/* Value Added Services Section */
.value-added-section {
    background: linear-gradient(135deg, #201f51 0%, #2d2b6e 100%);
    position: relative;
    overflow: hidden;
}

.value-added-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="2" cy="2" r="1" fill="rgba(201,162,39,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.value-added-section .section-badge.light {
    background: rgba(201, 162, 39, 0.2);
    color: #c9a227;
}

.value-added-section .section-title-new {
    color: #ffffff;
}

.value-added-section .section-title-new span {
    color: #c9a227;
}

.value-added-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Value Service Card */
.value-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.value-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #c9a227;
}

.value-service-card .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-service-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px -10px rgba(201, 162, 39, 0.5);
}

.value-service-card .value-icon i {
    font-size: 2rem;
    color: #201f51;
}

.value-service-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.value-service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Accreditations Section Styling */
.accreditations-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.accreditation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
}

.accreditation-card .acc-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--acc-color, #c9a227);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.accreditation-card .acc-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.accreditation-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #201f51;
    margin-bottom: 5px;
}

.accreditation-card .full-name {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.accreditation-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.accreditation-card .acc-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.15);
    color: #c9a227;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Departments Styling */
.contact-departments-section {
    padding: 100px 0;
    background: #ffffff;
}

.department-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.2);
}

.department-card.professional .dept-header {
    background: linear-gradient(135deg, #201f51 0%, #2d2b6e 100%);
}

.department-card.domestic .dept-header {
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
}

.dept-header {
    padding: 30px;
    text-align: center;
}

.dept-header .dept-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.dept-header .dept-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.dept-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.dept-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.dept-content {
    padding: 30px;
}

.dept-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #201f51;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dept-phones,
.dept-emails {
    margin-bottom: 25px;
}

.dept-phones a,
.dept-emails a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9ff;
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #201f51;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dept-phones a:hover,
.dept-emails a:hover {
    background: #201f51;
    color: #ffffff;
}

.dept-phones a i,
.dept-emails a i {
    color: #c9a227;
    font-size: 1.2rem;
}

.dept-phones a:hover i,
.dept-emails a:hover i {
    color: #c9a227;
}

/* Responsive */
@media (max-width: 991px) {
    .recruitment-service-card {
        padding: 25px;
    }
    
    .recruitment-service-card .service-icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .recruitment-service-card .service-icon-wrap i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recruitment-service-card h4 {
        font-size: 1.1rem;
    }
    
    .value-service-card {
        padding: 25px 20px;
    }
}

/*=============================================
  Countries Slider Section
=============================================*/
.deployment-section-slider {
    background: linear-gradient(135deg, #201f51 0%, #2d2b6e 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.deployment-section-slider::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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(201,162,39,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.deployment-header {
    position: relative;
    z-index: 1;
}

.deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.2);
    color: #c9a227;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.deployment-header h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.deployment-header h3 span {
    color: #c9a227;
}

.countries-slider-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

/* Country Slide Card */
.country-slide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    margin: 10px 5px;
}

.country-slide-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #c9a227;
}

.country-slide-card.gulf {
    border-top: 3px solid #f39c12;
}

.country-slide-card.europe {
    border-top: 3px solid #3498db;
}

.country-slide-card .flag-wrapper {
    width: 80px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.country-slide-card:hover .flag-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.country-slide-card .country-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-slide-card .country-slide-info h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.country-slide-card .region-label {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-slide-card.gulf .region-label {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.country-slide-card.europe .region-label {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

/* Region Indicators */
.region-indicators {
    position: relative;
    z-index: 1;
}

.region-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 10px;
}

.region-indicator.gulf {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.region-indicator.europe {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Countries Slider Owl Carousel Overrides */
.countries-slider.owl-carousel .owl-nav button.owl-prev,
.countries-slider.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 39, 0.2) !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: 50%;
    color: #c9a227 !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.countries-slider.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.countries-slider.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

.countries-slider.owl-carousel .owl-nav button:hover {
    background: #c9a227 !important;
    color: #201f51 !important;
}

.countries-slider.owl-carousel .owl-dots {
    margin-top: 20px;
}

.countries-slider.owl-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
    width: 12px;
    height: 12px;
}

.countries-slider.owl-carousel .owl-dots .owl-dot.active span {
    background: #c9a227;
    width: 30px;
}

/* About Section Countries Slider */
.destinations-served {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed rgba(201, 162, 39, 0.3);
}

.destinations-served h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #201f51;
    margin-bottom: 20px;
}

.destinations-served h4 i {
    color: #c9a227;
}

.about-countries-slider.owl-carousel {
    padding: 10px 0;
}

.about-country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 5px;
}

.about-country-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.about-country-item.gulf {
    border-left: 3px solid #f39c12;
}

.about-country-item.europe {
    border-left: 3px solid #3498db;
}

.about-country-item img {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-country-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #201f51;
    white-space: nowrap;
}

.about-countries-slider.owl-carousel .owl-nav button.owl-prev,
.about-countries-slider.owl-carousel .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
    background: #201f51 !important;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-countries-slider.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
}

.about-countries-slider.owl-carousel .owl-nav button.owl-next {
    right: -15px;
}

.about-countries-slider.owl-carousel .owl-nav button:hover {
    background: #c9a227 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .deployment-header h3 {
        font-size: 1.5rem;
    }
    
    .countries-slider.owl-carousel .owl-nav button.owl-prev,
    .countries-slider.owl-carousel .owl-nav button.owl-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .region-indicators {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .region-indicator {
        margin: 0;
    }
}

/*=============================================
  Navigation Menu Spacing Fix
=============================================*/
.main-nav nav .navbar-nav .nav-item a {
    margin-left: 6px !important;
    margin-right: 6px !important;
    font-size: 0.9rem;
    padding: 25px 5px;
}

.main-nav nav .navbar-nav .nav-item a i {
    font-size: 14px;
    margin-left: 2px;
}

/* Logo sizing - make it prominent */
.navbar-brand img {
    max-height: 90px;
    width: auto;
}

.navbar-brand {
    padding: 5px 0;
    margin-right: 15px;
}

/* Adjust others options spacing */
.main-nav .others-options .option-item {
    margin-right: 10px !important;
}

.main-nav .others-options .option-item:last-child {
    margin-right: 0 !important;
}

/* Apply Now button in nav - make it smaller */
.apply-btn-nav {
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
}

/* Large screens - slightly more spacing */
@media (min-width: 1400px) {
    .main-nav nav .navbar-nav .nav-item a {
        margin-left: 10px !important;
        margin-right: 10px !important;
        font-size: 0.95rem;
    }
}

/* Medium-large screens */
@media (min-width: 1200px) and (max-width: 1399px) {
    .main-nav nav .navbar-nav .nav-item a {
        margin-left: 5px !important;
        margin-right: 5px !important;
        font-size: 0.85rem;
    }
    
    .apply-btn-nav {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
}

/* Standard desktop */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-nav nav .navbar-nav .nav-item a {
        margin-left: 3px !important;
        margin-right: 3px !important;
        font-size: 0.8rem;
        padding: 25px 3px;
    }
    
    .main-nav nav .navbar-nav .nav-item a i {
        font-size: 12px;
    }
    
    .apply-btn-nav {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }
    
    .navbar-brand img {
        max-height: 75px;
    }
}

/* Mobile logo */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 70px;
    }
}

/*=============================================
  Services Dropdown Styling
=============================================*/
.services-dropdown {
    min-width: 280px !important;
}

.services-dropdown .dropdown-header {
    padding: 10px 15px !important;
    background: #f8f9ff !important;
    border-bottom: none !important;
    pointer-events: none;
}

.services-dropdown .dropdown-header span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #201f51 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-dropdown .dropdown-header span i {
    color: #c9a227;
    font-size: 1rem;
}

.services-dropdown .dropdown-divider {
    margin: 5px 0 !important;
    padding: 0 !important;
    border: none !important;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent) !important;
}

.services-dropdown .nav-link i {
    margin-right: 8px;
    color: #c9a227;
    font-size: 1.1rem;
    vertical-align: middle;
}

.services-dropdown .nav-link:hover i {
    color: #c9a227;
}

/*=============================================
  Footer Accreditations Bar
=============================================*/
.accreditations-bar {
    background: linear-gradient(135deg, #201f51 0%, #2d2b6e 100%);
    padding: 20px 0;
    border-bottom: 3px solid #c9a227;
}

.accreditations-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.acc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c9a227;
    font-weight: 600;
    font-size: 0.95rem;
}

.acc-label i {
    font-size: 1.3rem;
}

.acc-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.acc-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.acc-badge-item:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: #c9a227;
}

.acc-badge-item i {
    color: #c9a227;
    font-size: 1.1rem;
}

/* Footer Enhancements */
.footer-area .footer-widget h3 i {
    color: #c9a227;
    margin-right: 5px;
}

.footer-area .footer-about {
    font-size: 0.95rem;
    color: #201f51 !important;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-area .footer-widget li {
    color: #201f51;
}

.footer-area .footer-widget li i {
    color: #c9a227;
}

/* Footer spacing - reduce margins */
.footer-area .footer-widget {
    padding: 0 10px;
}

.footer-area .row {
    margin-left: -10px;
    margin-right: -10px;
}

.footer-area .col-lg-3,
.footer-area .col-lg-2,
.footer-area .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
}

/* WhatsApp button in footer - keep green */
.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25d366;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-whatsapp-btn:hover {
    background: #128c7e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-btn i {
    font-size: 1.3rem;
}

/* Social links - only WhatsApp green */
.footer-area .social-link li:last-child a {
    background: #25d366 !important;
}

.footer-area .social-link li:last-child a:hover {
    background: #128c7e !important;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .accreditations-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .acc-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .acc-badge-item {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/*=============================================
  Office Location Card
=============================================*/
.office-location-card {
    background: linear-gradient(135deg, #201f51 0%, #2d2b6e 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.office-location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.office-location-card .location-content h3 {
    color: #c9a227;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-location-card .address {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.office-location-card .city {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 15px;
}

.office-location-card .office-hours-inline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.office-location-card .office-hours-inline span i {
    color: #c9a227;
}

.office-location-card .location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.office-location-card .btn-directions,
.office-location-card .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-location-card .btn-directions {
    background: #ffffff;
    color: #201f51;
}

.office-location-card .btn-directions:hover {
    background: #c9a227;
    color: #201f51;
    transform: translateY(-3px);
}

.office-location-card .btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.office-location-card .btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .office-location-card .location-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .office-location-card {
        padding: 25px;
    }
    
    .office-location-card .location-actions {
        flex-direction: column;
    }
    
    .office-location-card .btn-directions,
    .office-location-card .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

