/* Gulf Job Placement - Main Stylesheet */

:root {
    --primary-blue: #1B6FA5;
    --secondary-blue: #2E8FBE;
    --primary-green: #6AB935;
    --secondary-green: #5FA32E;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== SPINNER ANIMATION ===== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* ===== HEADER & NAVBAR ===== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    flex: 0 0 auto;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: 0.3s ease;
}


.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f5f8fb 0%, #eef2f9 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b6fa5' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--primary-blue);
}

.tagline {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b6fa5' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 30px 0;
    background: var(--bg-white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    padding: 20px 15px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.step h3 {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0 0 8px;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    height: 30px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reason-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.reason-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    opacity: 0.3;
}

.reason-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 8px;
    text-align: center;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 10px;
}

.stat p {
    font-size: 1rem;
    opacity: 0.95;
}

/* ===== ALL SERVICES SECTION ===== */
.all-services {
    padding: 60px 0;
}

.all-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.all-services-page {
    padding: 60px 0;
}

.all-services-page .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.service-card.dynamic .service-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card a {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
}

.service-card.dynamic a {
    color: var(--primary-green);
}

.service-card a:hover {
    color: var(--secondary-blue);
}

.service-card.dynamic a:hover {
    color: var(--secondary-green);
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===== SEAMLESS BANNER ===== */
.seamless-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b6fa5' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.seamless-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.seamless-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SEAMLESS SERVICES SECTION ===== */
.seamless-services {
    padding: 60px 0;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-white);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== VISA SERVICES PAGE ===== */
.visa-intro {
    text-align: center;
    margin-bottom: 50px;
}

.visa-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.visa-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.visa-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.visa-service {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.visa-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.visa-service .service-icon {
    margin-bottom: 20px;
}

.visa-service h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.visa-service p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== JOBS PAGE ===== */
.jobs-intro {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.jobs-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.jobs-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.filter-group select {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.job-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.job-header {
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 12px;
}

.job-header h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.location {
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.job-details {
    flex-grow: 1;
    margin-bottom: 20px;
}

.job-details .company {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.job-details .salary {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.job-details .description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-inquire-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
    gap: 8px;
}

.job-inquire-link:hover {
    color: var(--secondary-blue);
}

.btn-small {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    width: 100%;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-white);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-blue);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(27, 111, 165, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 12px 0;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    background: var(--primary-blue);
    color: var(--bg-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 111, 165, 0.2);
}

/* ===== FILE UPLOAD ===== */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background-color: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-upload-wrapper:hover {
    border-color: #1B6FA5;
    background-color: #f0f9f5;
}

.file-upload-wrapper i {
    font-size: 2.5rem;
    color: #1B6FA5;
}

.file-upload-wrapper input[type="file"] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}

.file-upload-wrapper span {
    color: #666666;
    font-weight: 500;
    font-size: 0.95rem;
}

.file-upload-wrapper input[type="file"]:not(:disabled) ~ span {
    cursor: pointer;
}

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f5f5 100%);
}

.whatsapp-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 2px,
            rgba(255, 255, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(27, 111, 165, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(27, 111, 165, 0.35);
}

.whatsapp-bg-icon {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    opacity: 0.1;
    pointer-events: none;
}

.whatsapp-content {
    position: relative;
    z-index: 2;
}

.whatsapp-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.whatsapp-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-whatsapp {
    background-color: var(--primary-green) !important;
    color: var(--bg-white) !important;
    padding: 14px 40px !important;
    font-size: 1.05rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: var(--secondary-green) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(106, 185, 53, 0.3) !important;
}

@media (max-width: 768px) {
    .whatsapp-card {
        padding: 40px 25px;
    }

    .whatsapp-bg-icon {
        font-size: 8rem;
        right: -20px;
    }

    .whatsapp-content h2 {
        font-size: 1.7rem;
    }

    .whatsapp-content p {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
    }
}

/* ===== MAIN CONTENT ===== */
main {
    min-height: calc(100vh - 200px);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.clients-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-item {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.client-item:hover {
    box-shadow: none;
    transform: translateY(-5px);
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-section-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 2px solid transparent;
}

.social-links a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    border-color: var(--bg-white);
}

.social-links a:hover i,
.social-links a:hover span {
    color: var(--bg-white);
}

.social-links a.whatsapp-channel {
    border-radius: 5px;
    width: auto;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
}

.social-links a.whatsapp-channel span {
    font-size: 1rem;
    font-weight: 500;
}

.social-links a.whatsapp-channel:hover {
    transform: translateY(-3px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--primary-green);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.95;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-green);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
}

.powered-by span {
    font-size: 0.9rem;
}

.powered-by a {
    display: flex;
    align-items: center;
}

.cb-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.powered-by a:hover .cb-logo {
    opacity: 1;
}

/* ===== FLOATING CONTACT WIDGET ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(27, 111, 165, 0.3);
    transition: all 0.3s ease;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 111, 165, 0.4);
}

.floating-contact-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.floating-contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.contact-option:last-child {
    border-bottom: none;
}

.contact-option:hover {
    background-color: var(--bg-light);
    padding-left: 25px;
}

.contact-option i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-option.whatsapp i {
    color: #25D366;
}

.contact-option.phone i {
    color: var(--primary-blue);
}

.contact-option.email i {
    color: var(--primary-green);
}

.contact-option span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .client-item {
        height: 120px;
    }

    .clients-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        list-style: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .powered-by {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar-content {
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--bg-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
        display: block;
        width: 100%;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu a:hover {
        background-color: var(--bg-light);
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .all-services h2 {
        font-size: 1.5rem;
    }

    .steps-container {
        flex-wrap: wrap;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .services-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

/* ===== COUNTRIES SLIDER SECTION ===== */
.countries-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef7 100%);
}

.countries-slider-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.countries-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(27, 111, 165, 0.3);
}

.slider-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.countries-slider-container {
    overflow: hidden;
    flex: 1;
    max-width: 100%;
}

.countries-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.countries-slider::-webkit-scrollbar {
    display: none;
}

.country-card {
    flex: 0 0 220px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(27, 111, 165, 0.15);
}

.country-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.country-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .countries-slider-section {
        padding: 60px 0;
    }

    .countries-slider-section h2 {
        font-size: 1.8rem;
    }

    .countries-slider-wrapper {
        gap: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .country-card {
        flex: 0 0 180px;
        padding: 20px 15px;
    }

    .country-image {
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
    }

    .country-card h3 {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-item {
        height: 100px;
        padding: 15px;
    }

    .clients-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .logo-img {
        height: 80px;
    }

    .navbar {
        position: relative;
    }

    .nav-menu.active {
        max-height: 280px;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
