/* Halis Pharma Main Stylesheet */

/* ========================================
   Variables & Base
   ======================================== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-top {
    background: var(--bg-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.header-contact .email-link {
    color: var(--text-light);
    font-size: 14px;
}

.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
}

.search-form-wrapper {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 300px;
}

.search-form-wrapper.active {
    display: block;
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

/* Navigation */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(6px);
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.15);
}

.hero-slider-dot.is-active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.hero-slider-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.section-button {
    margin-top: 30px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    text-align: center;
}

.about-content .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.4;
}

.about-button {
    margin-top: 40px;
}

/* Innovation / product portfolio section */
.innovation-section.products-catalog-section {
    background: linear-gradient(180deg, #e8eef6 0%, #f1f5f9 32%, #f8fafc 100%);
}

.innovation-section.products-catalog-section .section-title {
    color: var(--primary-color);
}

.products-catalog-section--page {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 60%, #f8fafc 100%);
}

.products-catalog-wrap {
    margin-top: 8px;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 32px;
    margin-top: 40px;
}

.products-catalog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.products-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 20px 48px rgba(15, 23, 42, 0.08);
    border-color: rgba(0, 102, 204, 0.14);
}

/* Top row: badges + dosage — document flow, no overlap */
.products-catalog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 14px 18px 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.products-catalog-card__meta-left {
    display: flex;
    align-items: center;
    min-height: 30px;
    flex: 0 1 auto;
}

.products-catalog-card__sugar-badge {
    display: block;
    height: auto;
    max-height: 28px;
    width: auto;
    max-width: 100%;
}

.products-catalog-card__form-tag {
    flex-shrink: 0;
    margin-left: auto;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.35;
    text-align: center;
    max-width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.products-catalog-card--accent-blue .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.products-catalog-card--accent-teal .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
}

.products-catalog-card--accent-purple .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%);
}

.products-catalog-card--accent-red .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.products-catalog-card--accent-orange .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #fb923c 0%, #c2410c 100%);
}

.products-catalog-card--accent-amber .products-catalog-card__form-tag {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.products-catalog-card__main {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
}

.products-catalog-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 20px;
    padding: 0;
}

.products-catalog-card__title-wrap {
    flex: 1;
    min-width: 0;
}

.products-catalog-card__leaf {
    flex-shrink: 0;
    width: 44px;
    height: auto;
    margin-top: 2px;
}

.products-catalog-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #0f172a;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.products-catalog-card--accent-blue .products-catalog-card__name {
    color: #1e3a8a;
}

.products-catalog-card--accent-teal .products-catalog-card__name {
    color: #115e59;
}

.products-catalog-card--accent-purple .products-catalog-card__name {
    color: #5b21b6;
}

.products-catalog-card--accent-red .products-catalog-card__name {
    color: #991b1b;
}

.products-catalog-card--accent-orange .products-catalog-card__name {
    color: #9a3412;
}

.products-catalog-card--accent-amber .products-catalog-card__name {
    color: #1e3a5f;
}

.products-catalog-card__tagline {
    margin: 10px 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.45;
    color: #166534;
    letter-spacing: 0.01em;
}

.products-catalog-card--accent-orange .products-catalog-card__tagline {
    color: #c2410c;
}

.products-catalog-card--accent-amber .products-catalog-card__tagline {
    color: #92400e;
}

.products-catalog-card__detail {
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.products-catalog-card__label {
    display: block;
    margin: 0 0 8px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
}

.products-catalog-card__composition {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.72;
    color: #475569;
    max-width: 65ch;
}

.products-catalog-card__share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-top: auto;
    padding-top: 18px;
    margin-bottom: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.products-catalog-card__share-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.products-catalog-card__share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.products-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    line-height: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a.products-share-btn {
    text-decoration: none;
}

.products-share-btn:hover {
    background: #ffffff;
    border-color: rgba(0, 102, 204, 0.25);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.products-share-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.products-share-btn img {
    display: block;
    pointer-events: none;
}

.products-share-btn--native svg {
    display: block;
}

.products-catalog-card--featured {
    grid-column: 1 / -1;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.12);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.06), 0 24px 56px rgba(15, 23, 42, 0.08);
}

.products-catalog-card--featured .products-catalog-card__meta {
    padding: 16px 22px 14px;
}

.products-catalog-card--featured .products-catalog-card__main {
    padding: 26px 24px 32px;
}

.products-catalog-card--featured .products-catalog-card__name {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    background: linear-gradient(92deg, #1d4ed8 0%, #1d4ed8 42%, #c2410c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .products-catalog-card--featured .products-catalog-card__name {
        -webkit-text-fill-color: unset;
        background: none;
        color: #1d4ed8;
    }
}

.products-catalog-section--page .products-catalog-grid {
    margin-top: 16px;
}

@media (min-width: 960px) {
    .products-catalog-card--featured .products-catalog-card__main {
        display: grid;
        grid-template-columns: minmax(220px, 30%) 1fr;
        gap: 0 40px;
        align-items: start;
        padding: 28px 36px 36px;
    }

    .products-catalog-card--featured .products-catalog-card__head {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        padding-right: 8px;
    }

    .products-catalog-card--featured .products-catalog-card__detail {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
        padding-top: 0;
        padding-left: 36px;
        border-top: none;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        align-self: stretch;
    }

    .products-catalog-card--featured .products-catalog-card__composition {
        max-width: none;
    }

    .products-catalog-card--featured .products-catalog-card__share {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 28px;
        padding-top: 20px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }
}

.products-catalog-page__hero {
    padding: 48px 0 20px;
    background: linear-gradient(180deg, #e8f0fa 0%, #f8fafc 100%);
}

.products-catalog-page__title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.products-catalog-page__intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
}

.products-catalog-page__intro p:last-child {
    margin-bottom: 0;
}

/* Legacy innovation block (therapeutic grid) if used without product catalog */
.innovation-section:not(.products-catalog-section) {
    background: var(--bg-white);
}

.therapeutic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.therapeutic-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.therapeutic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.therapeutic-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.therapeutic-item h3 {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* Leadership team */
.leadership-section {
    position: relative;
    background: linear-gradient(165deg, #f4f7fb 0%, #ffffff 42%, #fafbfc 100%);
    overflow: hidden;
}

.leadership-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 204, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 60%, rgba(13, 148, 136, 0.06), transparent 45%);
    pointer-events: none;
}

.leadership-section .container {
    position: relative;
    z-index: 1;
}

.leadership-section__header {
    margin-bottom: 48px;
}

.leadership-section__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 12px;
}

.leadership-section__title {
    color: var(--primary-color);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.leadership-section__intro {
    max-width: 640px;
}

.leadership-featured {
    margin-bottom: 32px;
}

.leadership-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.leadership-grid > li {
    margin: 0;
}

.leadership-card {
    position: relative;
    height: 100%;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.1),
        0 8px 16px rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.12);
}

.leadership-card__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.leadership-card__inner {
    padding: 28px 28px 28px 32px;
}

.leadership-card--featured .leadership-card__inner {
    padding: 36px 40px 40px 44px;
}

.leadership-card__role {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0 0 12px;
}

.leadership-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.35;
    margin: 0;
    font-family: inherit;
}

.leadership-card--featured .leadership-card__name {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.leadership-card--featured {
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow:
        0 8px 40px rgba(0, 102, 204, 0.1),
        0 2px 8px rgba(15, 23, 42, 0.06);
}

.leadership-card--featured:hover {
    box-shadow:
        0 24px 56px rgba(0, 102, 204, 0.14),
        0 12px 24px rgba(15, 23, 42, 0.08);
}

.leadership-card--ceo.leadership-card--featured {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.leadership-card--ceo .leadership-card__role {
    color: #0d9488;
}

.leadership-card--ceo .leadership-card__accent {
    display: none;
}

.leadership-card--ceo.leadership-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #0891b2, #0066cc);
    border-radius: 20px 20px 0 0;
}

.leadership-card--director .leadership-card__role {
    color: #0284c7;
}

.leadership-card--director .leadership-card__accent {
    background: linear-gradient(180deg, #38bdf8, #0284c7);
}

.leadership-card--sales .leadership-card__role {
    color: #b45309;
}

.leadership-card--sales .leadership-card__accent {
    background: linear-gradient(180deg, #fb923c, #c2410c);
}

.leadership-card--hr .leadership-card__role {
    color: #4d7c0f;
}

.leadership-card--hr .leadership-card__accent {
    background: linear-gradient(180deg, #84cc16, #4d7c0f);
}

.leadership-card--consulting .leadership-card__role {
    color: #c2410c;
}

.leadership-card--consulting .leadership-card__accent {
    background: linear-gradient(180deg, #fdba74, #ea580c);
}

.leadership-card--legal .leadership-card__role {
    color: #b91c1c;
}

.leadership-card--legal .leadership-card__accent {
    background: linear-gradient(180deg, #f87171, #b91c1c);
}

.leadership-card--finance .leadership-card__role {
    color: #15803d;
}

.leadership-card--finance .leadership-card__accent {
    background: linear-gradient(180deg, #4ade80, #15803d);
}

@media (max-width: 600px) {
    .leadership-card__inner {
        padding: 22px 22px 22px 26px;
    }

    .leadership-card--featured .leadership-card__inner {
        padding: 28px 24px 32px 28px;
    }
}

/* Global Presence */
.global-presence-section {
    background: var(--bg-light);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.country-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.country-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.country-name {
    font-weight: 500;
    color: var(--text-color);
}

/* Certifications */
.certifications-section {
    background: var(--bg-white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.certification-item {
    text-align: center;
    padding: 40px 20px;
}

.certification-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.certification-item h3 {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

/* Impact Section */
.impact-section {
    background: var(--bg-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.impact-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.impact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.impact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.impact-item:hover .impact-icon img {
    transform: scale(1.1);
}

.impact-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
}

/* Inside Halis Pharma */
.inside-getspharma-section {
    background: var(--bg-white);
}

.inside-content-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.inside-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.inside-image {
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inside-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.inside-item:hover .inside-image img {
    transform: scale(1.1);
}

.placeholder-image {
    font-size: 4rem;
}

.inside-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.inside-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.careers-content .section-title {
    color: white;
}

.careers-button {
    margin-top: 40px;
}

.careers-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.careers-section .btn-primary:hover {
    background: var(--bg-light);
}

/* News Section */
.news-section {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--bg-light);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.news-title a {
    color: var(--text-color);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.news-link:hover {
    color: var(--secondary-color);
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-widget h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: #ccc;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    color: #ccc;
    padding: 8px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 14px;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.newsletter h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: white;
    border-radius: 5px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

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

.copyright, .terms {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.terms a {
    color: #888;
}

.terms a:hover {
    color: white;
}

/* ========================================
   Page & Single Post Styles
   ======================================== */
.page-content,
.single-content {
    padding: 60px 0;
}

.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

.entry-title {
    color: var(--text-color);
    margin-bottom: 20px;
}

.entry-thumbnail {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--secondary-color);
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--text-color);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: var(--primary-color);
}

/* Search Results */
.search-results {
    padding: 60px 0;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-title span {
    color: var(--primary-color);
}

.search-results-list {
    max-width: 900px;
    margin: 0 auto;
}

.search-result-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.search-result-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.search-result-item .entry-title {
    margin-bottom: 15px;
}

.search-result-item .entry-title a {
    color: var(--text-color);
    font-size: 1.5rem;
}

.search-result-item .entry-title a:hover {
    color: var(--primary-color);
}

.search-result-item .entry-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.search-result-item .entry-excerpt {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.search-result-item .read-more {
    color: var(--primary-color);
    font-weight: 600;
}

.search-result-item .read-more:hover {
    color: var(--secondary-color);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* 404 Page */
.error-404 {
    padding: 100px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-subtitle {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.error-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.error-actions {
    margin-top: 30px;
}

/* Search Form Styles */
.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.search-submit {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--secondary-color);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        flex-direction: column;
        width: 250px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-slider-dots {
        bottom: 86px;
    }

    .hero-scroll-indicator {
        bottom: 22px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .therapeutic-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .products-catalog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 28px;
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .inside-item {
        grid-template-columns: 1fr;
    }

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

    .footer-widgets {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .error-title {
        font-size: 5rem;
    }

    .error-subtitle {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* ========================================
   Contact page & form
   ======================================== */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-page__intro-text {
    margin-bottom: 32px;
}

.contact-page__details {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-page__details-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.contact-page__detail {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-page__detail:last-child {
    margin-bottom: 0;
}

.contact-page__detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-page__detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-page__detail a:hover {
    color: var(--secondary-color);
}

.contact-page__detail a.contact-page__wa-link {
    font-weight: 600;
    font-size: 1.05rem;
    color: #128c7e;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.contact-page__detail a.contact-page__wa-link:hover {
    color: #075e54;
    text-decoration: underline;
}

.contact-page__detail--muted {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form__row {
    margin-bottom: 20px;
}

.contact-form__row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form__field .required {
    color: #c00;
    font-weight: 700;
}

.contact-form__field input[type="text"],
.contact-form__field input[type="email"],
.contact-form__field input[type="tel"],
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-color);
    transition: var(--transition);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__field--checkbox {
    margin-top: 8px;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.contact-form__checkbox-label input {
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-form__actions {
    margin-top: 24px;
}

.contact-form__submit {
    min-width: 180px;
}

.contact-form__notice {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form__notice--success {
    background: #e8f6ee;
    border: 1px solid #b8dfc8;
    color: #1a5c2e;
}

.contact-form__notice--error {
    background: #fdeaea;
    border: 1px solid #f0b4b4;
    color: #8a1f1f;
}

@media (max-width: 900px) {
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form__row--split {
        grid-template-columns: 1fr;
    }
}

/* Additional Utility Classes */
.site-wrapper {
    min-height: calc(100vh - 200px);
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Loading States */
body.loading {
    overflow: hidden;
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}

