/*
Theme Name: ZYKL HR
Theme URI: https://zykl-hr.com
Author: ZYKL HR
Description: Custom theme for ZYKL HR website
Version: 1.0
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========== TOP BAR ========== */
.top-bar {
    background: #0a7ec2;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #fff;
    margin-right: 20px;
}

.top-bar-left a i {
    margin-right: 5px;
}

.top-bar-right .social-icons a {
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-left: 5px;
    font-size: 13px;
    transition: background 0.3s;
}

.top-bar-right .social-icons a:hover {
    background: rgba(255,255,255,0.4);
}

/* ========== HEADER / NAVBAR ========== */
.site-header {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.site-logo img {
    height: 110px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s;
    padding: 5px 0;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #0a7ec2;
}

.header-cta .btn-consultation {
    background: transparent;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.header-cta .btn-consultation:hover {
    background: #0a7ec2;
    border-color: #0a7ec2;
    color: #fff;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 550px;
    background: url('img/hero-bg.jpg') right center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.0) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ccc;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-desc {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
    border-left: 3px solid #0a7ec2;
    padding-left: 15px;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a7ec2;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-readmore:hover {
    background: #086aa8;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 0;
    background: #eef4f8;
}

.about-section .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-image-wrap {
    position: relative;
    flex: 0 0 380px;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 0;
}

.about-name-badge {
    position: relative;
    bottom: 0;
    left: 0;
    background: #0a7ec2;
    color: #fff;
    padding: 18px 30px;
    width: 70%;
}

.about-name-badge h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.about-name-badge p {
    font-size: 13px;
    color: #d0e8f7;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0a7ec2;
    display: inline-block;
}

.about-content .about-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    margin-top: 15px;
    line-height: 1.4;
}

.mission-vision {
    display: flex;
    gap: 0;
}

.mv-card {
    flex: 1;
    padding-right: 25px;
}

.mv-card + .mv-card {
    border-left: 2px solid #d0d8dd;
    padding-left: 25px;
    padding-right: 0;
}

.mv-card .mv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    color: #0a7ec2;
    font-size: 36px;
}

.mv-card h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.mv-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 70px 0;
    background: #1a1a2e;
    text-align: center;
}

.section-label {
    font-size: 13px;
    color: #0a7ec2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 40px;
}

.services-section .section-label {
    color: #5aafdf;
}

.services-section .section-title {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
}

.service-card .service-overlay .service-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.service-card .service-overlay h4 {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.btn-consultation-outline {
    display: inline-block;
    border: 2px solid #0a7ec2;
    background: #0a7ec2;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-consultation-outline:hover {
    background: #086aa8;
    border-color: #086aa8;
    color: #fff;
}

/* ========== JOBS SECTION ========== */
.jobs-section {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.job-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.job-card .job-icon {
    font-size: 40px;
    color: #0a7ec2;
    margin-bottom: 15px;
}

.job-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.job-card p {
    font-size: 13px;
    color: #888;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 70px 0;
    background: #1a1a2e;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

.contact-form-wrap {
    flex: 1;
    background: #fff;
    padding: 35px 30px;
}

.contact-form-wrap .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-bottom-color: #0a7ec2;
}

.contact-form-wrap textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
    color: #999;
}

.btn-submit {
    display: block;
    width: 100%;
    background: #fff;
    color: #0a7ec2;
    border: 2px solid #0a7ec2;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #0a7ec2;
    color: #fff;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 0;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-nav ul li:not(:last-child)::after {
    content: '|';
    margin-left: 10px;
    color: #666;
}

.footer-nav ul li a {
    color: #ccc;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #0a7ec2;
}

.footer-contact {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

.footer-contact a {
    color: #aaa;
    margin: 0 10px;
}

.footer-contact i {
    margin-right: 5px;
}

.footer-address {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
}

.footer-address i {
    margin-right: 5px;
    color: #0a7ec2;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0a7ec2;
    color: #fff;
    border-radius: 4px;
    margin: 0 3px;
    font-size: 14px;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: #086aa8;
}

.footer-bottom {
    background: #0a7ec2;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    margin-top: 30px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section .container {
        flex-direction: column;
    }
    .about-image-wrap {
        flex: none;
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-section {
        height: 400px;
    }
    .main-nav ul {
        gap: 15px;
    }
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .main-nav {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .mission-vision {
        flex-direction: column;
        gap: 25px;
    }
    .mv-card + .mv-card {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #d0d8dd;
        padding-top: 25px;
    }
    .mv-card {
        padding-right: 0;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate {
    opacity: 0;
}

.animate.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-fade-up.animated { animation-name: fadeInUp; }
.animate-fade-left.animated { animation-name: fadeInLeft; }
.animate-fade-right.animated { animation-name: fadeInRight; }
.animate-fade-in.animated { animation-name: fadeIn; }

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
