/* ========================================
   CROYANCE PHARMA - Custom Styles
   Bootstrap 5 Professional Theme
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --cp-primary: #0a6e3b;
    --cp-primary-dark: #084d2a;
    --cp-primary-light: #0d8a4a;
    --cp-accent: #e8742b;
    --cp-accent-light: #f5a623;
    
    /* Backgrounds */
    --cp-bg-light: #f8faf9;
    --cp-bg-gradient: linear-gradient(135deg, #f0f7f2 0%, #ffffff 100%);
    
    /* Text */
    --cp-text: #1a2e23;
    --cp-text-light: #5a6d62;
    --cp-text-muted: #8a9990;
    
    /* Shadows */
    --cp-shadow-sm: 0 2px 8px rgba(10, 110, 59, 0.08);
    --cp-shadow: 0 8px 30px rgba(10, 110, 59, 0.12);
    --cp-shadow-lg: 0 20px 60px rgba(10, 110, 59, 0.15);
    --cp-shadow-hover: 0 15px 40px rgba(10, 110, 59, 0.18);
    
    /* Border Radius */
    --cp-radius-sm: 8px;
    --cp-radius: 16px;
    --cp-radius-lg: 24px;
    --cp-radius-xl: 32px;
    
    /* Transitions */
    --cp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cp-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cp-text);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--cp-text);
}

.text-gradient {
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: var(--cp-primary);
    text-decoration: none;
    transition: var(--cp-transition);
}

a:hover {
    color: var(--cp-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Spacing Utility */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 100px;
    animation: pulse 1.5s infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--cp-bg-light);
    border-top-color: var(--cp-primary);
    border-radius: 50%;
    margin: 1rem auto 0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--cp-shadow-sm);
    padding: 0.8rem 0;
    transition: var(--cp-transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--cp-shadow);
}

.navbar-brand img {
    height: 40px;
    transition: var(--cp-transition);
}

.navbar-nav .nav-link {
    color: var(--cp-text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--cp-transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cp-primary);
    transition: var(--cp-transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--cp-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========== BUTTONS ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: var(--cp-transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(10, 110, 59, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--cp-primary-light) 0%, var(--cp-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 110, 59, 0.35);
}

.btn-outline-primary {
    color: var(--cp-primary);
    border: 2px solid var(--cp-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--cp-primary);
    border-color: var(--cp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--cp-primary);
    box-shadow: var(--cp-shadow);
}

.btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--cp-shadow-hover);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--cp-bg-gradient);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 110, 59, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 116, 43, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 110, 59, 0.05) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-5deg); }
    75% { transform: translate(-20px, -10px) rotate(3deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(10, 110, 59, 0.1);
    border: 1px solid rgba(10, 110, 59, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cp-primary);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--cp-text);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--cp-text-light);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 12px;
    color: var(--cp-primary);
    font-size: 1.2rem;
}

.stat-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--cp-text-muted);
}

.stat-text strong {
    font-size: 0.95rem;
    color: var(--cp-text);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem;
}

.hero-card-main {
    background: #fff;
    border-radius: var(--cp-radius-xl);
    padding: 2rem;
    box-shadow: var(--cp-shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cp-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 110, 59, 0.1);
}

.hero-card-header i {
    font-size: 1.5rem;
}

.value-chain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chain-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 1rem 0.5rem;
}

.chain-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.chain-content h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.chain-content p {
    font-size: 0.75rem;
    color: var(--cp-text-muted);
    margin: 0;
}

.chain-arrow {
    color: var(--cp-primary);
    font-size: 1.2rem;
    opacity: 0.5;
}

.hero-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 110, 59, 0.1);
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(232, 116, 43, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cp-accent);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--cp-shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 3;
}

.floating-card i {
    color: var(--cp-primary);
    font-size: 1.1rem;
}

.card-1 {
    top: 0;
    right: 0;
    animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation: floatCard 4s ease-in-out infinite 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cp-text-muted);
    font-size: 0.8rem;
    transition: var(--cp-transition);
}

.hero-scroll-indicator a:hover {
    color: var(--cp-primary);
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ========== SECTION STYLES ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 1rem;
    color: var(--cp-text-light);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: #fff;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--cp-bg-light);
    border-radius: var(--cp-radius);
    transition: var(--cp-transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--cp-shadow-sm);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--cp-primary);
    font-size: 1.25rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.team-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow);
}

.team-card-main {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-dark) 100%);
    color: #fff;
}

.team-card-main h3,
.team-card-main p,
.team-card-main .team-role {
    color: #fff;
}

.team-card-main .team-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.team-card-main .team-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Team Card with Photo */
.team-card-photo {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    align-items: center;
}

.team-card-photo .team-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-card-photo .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card-photo .team-info {
    flex: 1;
}

.team-card-photo .team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card-photo .team-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.team-card-photo .team-info .team-role {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
}

.team-card-photo .team-badge {
    margin-bottom: 0.5rem;
}

/* Team Card with Small Photo */
.team-card-with-photo {
    text-align: center;
}

.team-card-with-photo .team-photo-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--cp-primary);
    box-shadow: var(--cp-shadow-sm);
}

.team-card-with-photo .team-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 12px;
    color: var(--cp-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 0.75rem;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== EXPERTISE SECTION ========== */
.expertise-section {
    background: var(--cp-bg-light);
}

.expertise-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
    border: 1px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
    border-color: rgba(10, 110, 59, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-light) 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.expertise-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cp-primary);
}

.expertise-link i {
    transition: var(--cp-transition);
}

.expertise-link:hover i {
    transform: translateX(5px);
}

.expertise-card-cta {
    background: linear-gradient(135deg, rgba(10, 110, 59, 0.05) 0%, rgba(10, 110, 59, 0.02) 100%);
    border: 2px dashed rgba(10, 110, 59, 0.2);
}

.expertise-card-cta .expertise-icon {
    background: rgba(10, 110, 59, 0.1);
    color: var(--cp-primary);
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: var(--cp-radius-lg);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.product-card-large {
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--cp-bg-light) 0%, #e8f5ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50%;
    color: var(--cp-primary);
    font-size: 2rem;
}

.product-content {
    padding: 1.5rem;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 0.75rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-content p {
    font-size: 0.95rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--cp-primary);
}

.product-link:hover i {
    transform: translateX(5px);
}

.product-link i {
    transition: var(--cp-transition);
}

/* ========== NEWS SECTION ========== */
.news-section {
    background: var(--cp-bg-light);
}

.news-card {
    background: #fff;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.news-image {
    height: 180px;
    background: linear-gradient(135deg, var(--cp-bg-light) 0%, #e8f5ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50%;
    color: var(--cp-primary);
    font-size: 1.5rem;
}

.news-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--cp-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cp-primary);
}

.news-link:hover i {
    transform: translateX(5px);
}

.news-link i {
    transition: var(--cp-transition);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: #fff;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--cp-bg-light);
    border-radius: var(--cp-radius-xl);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-primary);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
}

.testimonial-wrapper blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--cp-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50%;
    color: var(--cp-primary);
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--cp-text);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--cp-text-muted);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #fff;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-dark) 100%);
    border-radius: var(--cp-radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--cp-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--cp-transition);
}

.social-link:hover {
    background: var(--cp-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--cp-transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--cp-primary-light);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--cp-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--cp-transition);
    box-shadow: var(--cp-shadow);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--cp-primary-dark);
    transform: translateY(-5px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--cp-bg-gradient);
    padding: 6.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(10, 110, 59, 0.08) 0%, transparent 60%);
}

.page-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--cp-text-light);
    max-width: 650px;
    margin-bottom: 0;
}

/* ========== FORMS ========== */
.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(10, 110, 59, 0.2);
    border-radius: var(--cp-radius-sm);
    font-size: 0.95rem;
    transition: var(--cp-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cp-primary);
    box-shadow: 0 0 0 3px rgba(10, 110, 59, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cp-text);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========== CONTACT CARDS ========== */
.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--cp-bg-light);
    border-radius: var(--cp-radius-sm);
    margin-bottom: 1rem;
    transition: var(--cp-transition);
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-primary);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--cp-text);
    margin-bottom: 0.25rem;
}

.contact-info-text span,
.contact-info-text a {
    font-size: 0.85rem;
    color: var(--cp-text-light);
}

/* ========== JOB CARDS ========== */
.job-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    border-left: 4px solid var(--cp-primary);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow);
}

.job-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--cp-primary-dark);
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--cp-text-muted);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.job-card p {
    font-size: 0.95rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero-visual {
        margin-top: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .value-chain {
        flex-direction: column;
    }
    
    .chain-arrow {
        transform: rotate(90deg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card-main {
        grid-column: span 1;
    }
    
    .team-card-photo {
        flex-direction: column;
        text-align: center;
    }
    
    .team-card-photo .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-content {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-wrapper {
        padding: 2rem;
        text-align: center;
    }
    
    .cta-wrapper .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero-card-main {
        padding: 1.5rem;
    }
    
    .testimonial-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ========== SIDEBAR STYLES ========== */
.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cp-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cp-primary);
}

.event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    width: 55px;
    height: 55px;
    background: var(--cp-primary);
    border-radius: var(--cp-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--cp-text);
}

.event-info small {
    color: var(--cp-text-muted);
}

/* ========== NEWS FEATURED ========== */
.news-card-featured {
    border: 1px solid rgba(10, 110, 59, 0.1);
}

.news-card-featured .news-image {
    border-radius: var(--cp-radius) 0 0 var(--cp-radius);
}

.news-card-featured .news-content {
    padding: 2rem;
}

/* ========== TEAM MINI CARDS ========== */
.team-mini-card {
    padding: 0.75rem;
    background: var(--cp-bg-light);
    border-radius: var(--cp-radius-sm);
    transition: var(--cp-transition);
}

.team-mini-card:hover {
    background: rgba(10, 110, 59, 0.1);
}

.team-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-primary);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
}

/* ========== PARTNER HIGHLIGHT ========== */
.partner-highlight {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(245, 166, 35, 0.1);
    border-radius: var(--cp-radius-sm);
    font-size: 0.9rem;
}

/* ========== WHATSAPP CTA ========== */
.whatsapp-cta {
    padding: 3rem;
    background: #fff;
    border-radius: var(--cp-radius-xl);
    box-shadow: var(--cp-shadow);
}

.whatsapp-cta i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
    display: block;
}

.whatsapp-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.whatsapp-cta p {
    color: var(--cp-text-light);
    margin-bottom: 1.5rem;
}

.btn-success {
    background: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}

/* ========== PRODUCT FEATURES ========== */
.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.product-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--cp-text-light);
}

/* ========== VALUE ITEMS ========== */
.value-item {
    transition: var(--cp-transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow-sm);
}

.value-item i {
    display: block;
}

.value-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cp-text);
}

/* ========== BG LIGHT OVERRIDE ========== */
.bg-light {
    background-color: var(--cp-bg-light) !important;
}

/* ========== HERO IMAGE ========== */
.hero-image-wrapper {
    border-radius: var(--cp-radius-xl);
    overflow: hidden;
    box-shadow: var(--cp-shadow-lg);
    margin-bottom: 1.5rem;
}

.hero-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background: var(--cp-bg-light);
}

.gallery-item {
    position: relative;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--cp-transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* ========== NEW PRODUCT CARDS ========== */
.product-card-new {
    background: #fff;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.product-image-new {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-new img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.05);
}

.product-card-new .product-content {
    padding: 1.25rem;
}

.product-card-new .product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cp-primary-dark);
    margin-bottom: 0.25rem;
}

.product-dosage {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 0.5rem !important;
}

.product-card-new .product-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.product-partner {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: rgba(232, 116, 43, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cp-accent);
}

/* Simple Product Card */
.product-card-simple {
    background: #fff;
    border-radius: var(--cp-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.product-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow);
}

.product-icon-simple {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-light) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
}

.product-card-simple h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cp-text);
}

.product-card-simple p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* ========== FEATURED NEWS ========== */
.featured-news {
    background: #fff;
    border-radius: var(--cp-radius-xl);
    overflow: hidden;
    box-shadow: var(--cp-shadow-lg);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--cp-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.featured-content {
    padding: 2.5rem;
}

.featured-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cp-text);
}

.featured-content p {
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.news-category,
.news-date-inline {
    font-size: 0.85rem;
    color: var(--cp-text-muted);
}

.news-category {
    color: var(--cp-primary);
    font-weight: 600;
}

/* ========== NEWS CARDS NEW ========== */
.news-card-new {
    background: #fff;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
}

.news-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-new:hover .news-card-image img {
    transform: scale(1.1);
}

.news-date-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--cp-primary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-content {
    padding: 1.5rem;
}

.news-category-small {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(10, 110, 59, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 0.75rem;
}

.news-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cp-text);
    line-height: 1.4;
}

.news-card-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin-bottom: 1rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cp-primary);
}

.news-read-more:hover {
    color: var(--cp-primary-dark);
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(5px);
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cp-primary), var(--cp-primary-light));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--cp-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(10, 110, 59, 0.2);
}

.timeline-content {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--cp-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cp-text);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* ========== SIDEBAR EVENTS ========== */
.sidebar-events {
    background: #fff;
    border-radius: var(--cp-radius);
    padding: 1.5rem;
    box-shadow: var(--cp-shadow-sm);
}

.sidebar-events h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--cp-text);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cp-primary);
}

.event-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date-box {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-dark) 100%);
    border-radius: var(--cp-radius-sm);
    padding: 0.75rem 0.5rem;
    color: #fff;
}

.event-date-box .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-box .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.event-date-box .year {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
}

.event-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--cp-text);
}

.event-details p {
    font-size: 0.8rem;
    color: var(--cp-text-muted);
    margin: 0;
}

/* ========== NEWSLETTER BOX ========== */
.newsletter-box {
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-dark) 100%);
    border-radius: var(--cp-radius);
    padding: 1.5rem;
    color: #fff;
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.newsletter-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

/* ========== FEATURED NEWS ========== */
.featured-news {
    background: #fff;
    border-radius: var(--cp-radius-xl);
    overflow: hidden;
    box-shadow: var(--cp-shadow-lg);
}

.featured-news-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cp-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-news-content {
    padding: 2.5rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.news-category {
    color: var(--cp-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.news-date-text {
    color: var(--cp-text-muted);
    font-size: 0.85rem;
}

.featured-news-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--cp-text);
}

.featured-news-content p {
    color: var(--cp-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.news-tags .tag {
    padding: 0.35rem 0.75rem;
    background: rgba(10, 110, 59, 0.1);
    color: var(--cp-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========== NEWS GALLERY ========== */
.news-gallery-item {
    position: relative;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
}

.news-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-gallery-item:hover img {
    transform: scale(1.05);
}

.news-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 3rem 1.5rem 1.5rem;
    color: #fff;
}

.news-gallery-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.news-gallery-caption p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.85;
}

/* ========== NEWS CARD MODERN ========== */
.news-card-modern {
    background: #fff;
    border-radius: var(--cp-radius);
    overflow: hidden;
    box-shadow: var(--cp-shadow-sm);
    transition: var(--cp-transition);
    height: 100%;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow);
}

.news-card-image {
    position: relative;
    height: 200px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cp-bg-light) 0%, #e8f5ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cp-primary);
}

.news-card-image .news-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--cp-primary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-content {
    padding: 1.5rem;
}

.news-category-small {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(10, 110, 59, 0.1);
    color: var(--cp-primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cp-text);
    line-height: 1.4;
}

.news-card-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cp-primary), var(--cp-primary-light));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--cp-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: var(--cp-shadow-sm);
    transform: translateX(-50%);
    margin-left: 1.5px;
}

.timeline-content {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--cp-radius);
    box-shadow: var(--cp-shadow-sm);
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--cp-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--cp-text);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.partner-card {
    background: #ffffff;
    border-radius: var(--cp-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--cp-shadow);
    transition: var(--cp-transition);
    border: 1px solid rgba(10, 110, 59, 0.08);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cp-shadow-hover);
}

.partner-logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: var(--cp-transition);
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cp-text);
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--cp-text-light);
    margin: 0;
}

/* ========== WAVE ANIMATION ========== */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: wave-move 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes wave-move {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Wave responsive */
@media (max-width: 768px) {
    .hero-waves {
        height: 80px;
    }
    
    .waves {
        min-height: 50px;
        max-height: 80px;
    }
    
    .hero-section {
        padding-bottom: 60px;
    }
}

/* ========== WAVE VARIANT - TOP OF SECTIONS ========== */
.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-top .shape-fill {
    fill: #FFFFFF;
}

/* ========== WAVE DIVIDER BETWEEN SECTIONS ========== */
.wave-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}