/* ===== PROFICIENT HR SOLUTIONS — LIGHT THEME ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');
:root {
    --bg: #f5f7fa;
    --bg-alt: #eef1f7;
    --bg-card: #fffffff2;
    --navy: #1a2e4a;
    --navy-mid: #243a58;
    --navy-light: #2f4d74;
    --teal: #1e8fa8;
    --teal-light: #3ab4cc;
    --teal-pale: #d0f0f6;
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-pale: #fdf3d7;
    --text: #1a2e4a;
    --text-mid: #3d5068;
    --text-soft: #6b7f96;
    --white: #ffffff;
    --border: #dce4ef;
    --border-teal: rgba(30, 143, 168, 0.28);
    --border-gold: rgba(184, 134, 11, 0.25);
    --glass: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(30, 143, 168, 0.18);
    --shadow-sm: 0 2px 12px rgba(26, 46, 74, 0.07);
    --shadow-md: 0 8px 32px rgba(26, 46, 74, 0.11);
    --shadow-lg: 0 20px 60px rgba(26, 46, 74, 0.14);
    --shadow-teal: 0 4px 24px rgba(30, 143, 168, 0.22);
    --shadow-gold: 0 4px 24px rgba(184, 134, 11, 0.18);
    --grad-primary: linear-gradient(135deg, #1e8fa8, #3ab4cc);
    --grad-gold: linear-gradient(135deg, #b8860b, #d4a017, #b8860b);
    --grad-hero: linear-gradient(150deg, #e8f4f8 0%, #f2f7fb 40%, #e8eef7 100%);
    --grad-navy: linear-gradient(135deg, #1a2e4a, #2f4d74);
    --grad-section: linear-gradient(160deg, #f5f7fa 0%, #eef1f7 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 12% 18%, rgba(30, 143, 168, 0.07) 0%, transparent 45%), radial-gradient(circle at 88% 82%, rgba(184, 134, 11, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(30, 143, 168, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}


/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(26, 46, 74, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    height: 65px;
    box-shadow: 0 4px 30px rgba(26, 46, 74, 0.12);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 95px;
    height: 80px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    background: var(--teal-pale);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.nav-cta {
    background: var(--grad-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-teal);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 143, 168, 0.4) !important;
    background: linear-gradient(135deg, #1678a0, #2fa5be) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover::after {
    display: none !important;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.page-wrapper {
    position: relative;
    z-index: 1;
}


/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    transform: translateY(42px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-pale);
    border: 1px solid var(--border-teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: 0.3
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.hero h1 .gold {
    color: var(--teal);
}

.hero-layout-logo {
    width: 94px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ===== BUTTONS ===== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-primary);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-teal);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 143, 168, 0.38);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-secondary:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-3px);
}


/* ===== HERO VISUAL ===== */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    width: 320px;
}

.hero-card.card-main {
    min-height: 420px;
    order: 2;
    border-top: 3px solid var(--teal);
}

.hero-card.card-logo {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.hero-logo-card-img {
    width: 170px;
    max-width: 70%;
    height: auto;
    display: block;
    object-fit: contain;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--teal-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-teal);
}

.top-card-icon-img {
    width: 30px;
    height: 30px;
    display: block;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.card-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-lbl {
    font-size: 0.7rem;
    color: var(--text-soft);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: orbFloat 9s ease-in-out infinite;
}

.orb-1 {
    width: 360px;
    height: 360px;
    background: rgba(30, 143, 168, 0.09);
    top: -120px;
    right: -100px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(184, 134, 11, 0.07);
    bottom: -80px;
    left: -80px;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-18px)
    }
}


/* ===== PAGE HERO ===== */

.page-hero {
    padding: 140px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #e6f3f8 0%, #f0f6fa 55%, #eaeff7 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--navy);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}


/* ===== SECTIONS ===== */

.section {
    padding: 100px 2rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.section-title .gold {
    color: var(--teal);
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* ===== GLASS / WHITE CARDS ===== */

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.glass-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-teal);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--teal-pale);
    border: 1px solid var(--border-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.service-icon-img {
    width: 34px;
    height: 34px;
    display: block;
}

.glass-card:hover .card-icon-wrap {
    background: var(--teal-pale);
    border-color: var(--border-teal);
}

.glass-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-bg-card h3 {
    color: hwb(0 100% 0%);
}

.glass-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.service-bg-card p {
    color: #ffffff;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.service-bg-card:hover p {
    opacity: 1;
    max-height: 100px;
}

.service-bg-card {
    background: var(--bg-card);
    border-color: var(--border-teal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
}

.service-bg-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(219, 223, 231, 0.245), rgba(0, 0, 0, 0.853)), var(--service-bg);
    background-size: cover;
    background-position: center;
    filter: blur(1px) saturate(1);
    transform: scale(1.03);
    z-index: 0;
}

.service-bg-card>* {
    position: relative;
    z-index: 1;
}


/* ===== GRIDS ===== */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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


/* ===== STATS ===== */

.stats-section {
    padding: 80px 2rem;
    background: var(--grad-navy);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(30, 143, 168, 0.18) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-counter {
    position: relative;
    padding: 30px 20px;
}

.stat-counter::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stat-counter:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-suffix {
    color: var(--teal-light);
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.05em;
}


/* ===== DIVIDER ===== */

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 2rem;
}


/* ===== TESTIMONIALS ===== */

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 18px;
    right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(30, 143, 168, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #e6a817;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.author-role {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}


/* ===== JOB CARDS ===== */

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    border-color: var(--border-teal);
    background: #f0f8fb;
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.job-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.job-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-soft);
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--teal-pale);
    color: var(--teal);
    border: 1px solid var(--border-teal);
}


/* ===== BLOG CARDS ===== */

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-teal);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #c8e8f2, #d5eef7);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.blog-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(255, 255, 255, 0.35));
}

.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 4px 12px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.blog-body {
    padding: 28px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--teal);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.blog-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--navy);
    line-height: 1.4;
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blog-read {
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-read:hover {
    gap: 10px;
}


/* ===== CONTACT ===== */

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

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.contact-info p {
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-item:hover {
    border-color: var(--border-teal);
    background: #f0f8fb;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-pale);
    border: 1px solid var(--border-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--text-mid);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab4c2;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 143, 168, 0.1);
}

.form-group select option {
    background: #fff;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}


/* ===== INDUSTRIES ===== */

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-teal);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--navy);
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
}


/* ===== ABOUT ===== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-img-card.main {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-top: 3px solid var(--teal);
}

.about-img-card.accent,
.about-img-card.accent2 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.about-main-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: var(--navy);
}

.about-text-content p {
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}

.value-pill {
    padding: 8px 20px;
    background: var(--teal-pale);
    border: 1px solid var(--border-teal);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
}


/* ===== TEAM ===== */

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-teal);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1rem;
    border: 3px solid rgba(30, 143, 168, 0.25);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.team-role {
    font-size: 0.82rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
}


/* ===== CTA BAND ===== */

.cta-band {
    padding: 80px 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e2f4f8 0%, #eaeff8 100%);
    border-top: 1px solid var(--border-teal);
    border-bottom: 1px solid var(--border-teal);
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.cta-band p {
    color: var(--text-mid);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===== FOOTER ===== */

footer {
    background: linear-gradient(rgba(20, 34, 54, 0.97), rgba(12, 22, 38, 0.98)), url('assets/footer1.jpg') center/cover no-repeat;
    border-top: 1px solid rgba(30, 143, 168, 0.2);
    padding: 60px 2rem 26px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name {
    font-size: 1.2rem;
    color: #fff;
}

.footer-brand .logo-sub {
    color: var(--teal-light);
    display: block;
}

.footer-brand .navbar-logo {
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-text {
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    min-width: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border: 1px solid var(--border-teal);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

.footer-col ul li {
    margin-bottom: 0.55rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.87rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.82rem;
}

.footer-bottom span {
    color: var(--teal-light);
}


/* ===== BACK TO TOP ===== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-teal);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(30, 143, 168, 0.45);
}


/* ===== SCROLL ANIMATIONS ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}


/* ===== PROCESS STEPS ===== */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover {
    padding-left: 10px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--teal-pale);
    border: 1px solid var(--border-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-num {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
}


/* ===== FAQ ===== */

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: var(--border-teal);
}

.faq-q {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-card);
    transition: background 0.3s ease;
}

.faq-q:hover {
    background: #f0f8fb;
}

.faq-q span:first-child {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--navy);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.8;
    background: var(--bg-card);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 22px;
}


/* ===== MOBILE NAV ===== */

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 30px rgba(26, 46, 74, 0.10);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        color: var(--text-mid);
    }
    .nav-cta {
        text-align: center;
        justify-content: center;
        color: #fff !important;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: flex;
        margin-top: 1.4rem;
    }
    .hero-card-stack {
        width: min(92vw, 340px);
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-card {
        width: min(86vw, 300px);
    }
    .hero-card.card-main {
        min-height: 390px;
    }
    .hero-card.card-logo {
        min-height: 390px;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-layout-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
        row-gap: 0.8rem;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-counter::after {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-visual {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 70px 1.2rem;
    }
    .hero {
        padding: 110px 1.2rem 60px;
    }
    .hero-content {
        transform: translateY(24px);
    }
    .hero-layout-logo {
        width: 62px;
    }
    .hero-card-stack {
        width: min(94vw, 300px);
        height: auto;
    }
    .hero-card.card-main {
        width: min(88vw, 280px);
        padding: 22px;
        min-height: 360px;
    }
    .hero-card.card-logo {
        width: min(88vw, 280px);
        min-height: 360px;
        padding: 22px;
    }
    .hero-card.card-main img {
        max-width: 100% !important;
    }
    .hero-logo-card-img {
        width: 140px;
    }
    .top-card-icon-img {
        width: 26px;
        height: 26px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (orientation: landscape) and (max-width: 1100px) {
    .hero-card-stack {
        width: min(96vw, 760px);
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 0;
    }
    .hero-card.card-main,
    .hero-card.card-logo {
        width: min(44vw, 320px);
        min-height: 320px;
    }
}