/* ===== GENODENT BRAND COLORS & VARIABLES ===== */
:root {
    --genodent-primary: #009245;
    --genodent-secondary: #4F4F4F;
    --genodent-primary-light: #00b854;
    --genodent-primary-dark: #007a38;
    --genodent-secondary-light: #6a6a6a;
    --genodent-secondary-dark: #3a3a3a;
    --genodent-gradient-primary: linear-gradient(135deg, #009245 0%, #00b854 100%);
    --genodent-gradient-secondary: linear-gradient(135deg, #4F4F4F 0%, #6a6a6a 100%);
    --genodent-gradient-mixed: linear-gradient(135deg, #009245 0%, #4F4F4F 100%);
    --genodent-text-primary: #1e293b;
    --genodent-text-secondary: #64748b;
    --genodent-text-light: #94a3b8;
    --genodent-bg-primary: #f8fffe;
    --genodent-bg-secondary: #f1f5f4;
    --genodent-bg-accent: rgba(0, 146, 69, 0.05);
    --genodent-shadow-primary: rgba(0, 146, 69, 0.15);
    --genodent-shadow-secondary: rgba(79, 79, 79, 0.15);
    --primary: var(--genodent-primary);
    --primary-gradient: var(--genodent-gradient-primary);
    --secondary: var(--genodent-secondary);
}

/* ===== GLOBAL STYLES ===== */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

section {
    width: 100%;
    box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
.hero-bg-image-section {
    position: relative;
    min-height: 90vh;
    padding-top: 80px;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&q=80') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,146,69,0.9) 0%, rgba(79,79,79,0.8) 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-bg-image-section .container {
    position: relative;
    z-index: 2;
}

.hero-bg-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
    text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.hero-bg-desc {
    color: #f3f3f3;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero-bg-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 0 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-bg-btn.main-btn {
    background: #fff;
    color: #13c5c1;
    border: none;
}

.hero-bg-btn.ghost-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* ===== STORY SECTION ===== */
.our-story-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
}

.story-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.story-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.story-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Decorations pinned to the image corner */
.story-image-decorations {
    position: static; /* children will position relative to wrapper */
    display: block;
    z-index: 3;
    pointer-events: none;
}

.story-decoration {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

/* Place each badge at opposite image corners */
.story-decoration-1,
.story-decoration-2 {
    position: absolute;
}

.story-decoration-1 { /* top-right */
    top: 12px;
    right: -28px;
}

.story-decoration-2 { /* bottom-left */
    bottom: 12px;
    left: -28px;
}

.story-image-wrapper:hover .story-decoration-1 {
    transform: translate(-6px, -2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.story-image-wrapper:hover .story-decoration-2 {
    transform: translate(6px, 2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.story-decoration .decoration-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(38, 224, 127, 0.25);
}

.story-decoration .decoration-icon i {
    color: #ffffff !important; /* override global .fas color */
    font-size: 14px;
}

.story-decoration .decoration-content h6 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
}

.story-decoration .decoration-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 991px) {
    /* keep desktop corners; nothing needed here */
}

@media (max-width: 767px) {
    .story-image-decorations {
        position: static;
        margin-top: 12px;
        align-items: flex-start;
    }
    .story-decoration-1,
    .story-decoration-2 {
        position: static;
        transform: none !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        margin-bottom: 10px;
    }
}

.story-badge {
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 2;
}

.story-badge-inner {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(38, 224, 127, 0.3);
}

.story-badge-inner i {
    font-size: 28px;
    color: var(--genodent-primary);
}

.story-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.story-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 4px;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
}

.story-text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(238, 238, 238, 0.5);
}

.feature-icon-wrapper {
    margin-left: 20px;
    flex-shrink: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-content h5 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.feature-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* ===== FACILITIES SECTION ===== */
.facility-section-2025 {
    position: relative;
  background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    padding: 80px 0;
    overflow: hidden;
    margin-top: 30px;
}

.facility-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.facility-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.facility-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.facility-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-card-body {
    padding: 30px;
    position: relative;
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.2);
}

.facility-icon i {
    font-size: 24px;
    color: white;
}

.facility-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.facility-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.facility-features li i {
    color: var(--primary);
    font-size: 14px;
}

/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
}

.vm-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.vision-card, .mission-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.vision-card {
    border-right: 4px solid rgba(38, 224, 127, 0.5);
}

.mission-card {
    border-right: 4px solid rgba(19, 197, 193, 0.5);
}

.vision-icon, .mission-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.vision-icon .icon-backdrop, .mission-icon .icon-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
}

.vision-icon .icon-backdrop {
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.12) 0%, rgba(38, 224, 127, 0.05) 100%);
}

.mission-icon .icon-backdrop {
    background: linear-gradient(135deg, rgba(19, 197, 193, 0.12) 0%, rgba(19, 197, 193, 0.05) 100%);
}

.vision-icon i, .mission-icon i {
    font-size: 36px;
}

.vision-icon i {
    background: linear-gradient(135deg, #26e07f 0%, #1fc476 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-icon i {
    background: linear-gradient(135deg, #13c5c1 0%, #11b6b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-title, .mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.vision-title {
    color: #26e07f;
}

.mission-title {
    color: #13c5c1;
}

.vision-decoration, .mission-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 24px 0 100px;
    opacity: 0.1;
    z-index: 0;
}

.vision-decoration {
    background: linear-gradient(135deg, #26e07f 0%, transparent 80%);
}

.mission-decoration {
    background: linear-gradient(135deg, #13c5c1 0%, transparent 80%);
}

.vision-desc, .mission-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.vision-features, .mission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vision-card .feature-dot {
    background: linear-gradient(135deg, #26e07f 0%, #1fc476 100%);
}

.mission-card .feature-dot {
    background: linear-gradient(135deg, #13c5c1 0%, #11b6b3 100%);
}

.feature span {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    padding: 80px 0;
    overflow: hidden;
}

.certifications-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.certification-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.certification-icon {
    position: relative;
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.1);
    z-index: 1;
}

.certification-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 5px 10px rgba(38, 224, 127, 0.15));
}

.certification-content {
    flex: 1;
}

.certification-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.certification-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section-2025 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #f5fffd 100%);
    margin: 50px 0;
}

.cta-wrapper-2025 {
    position: relative;
    z-index: 2;
}

.cta-card-2025 {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
}

.cta-card-inner {
    position: relative;
    padding: 50px;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
}

.cta-title-2025 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #222, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #444;
    font-size: 1.05rem;
}

.cta-features li i {
    color: var(--primary);
    margin-left: 15px;
    font-size: 1.1rem;
}

.cta-action-2025 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    height: 100%;
}

.cta-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(38, 224, 127, 0.25);
    margin-bottom: 5px;
    border: 3px solid var(--primary);
}

.cta-icon i {
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.btn-cta-2025 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(38, 224, 127, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 250px;
}

.btn-cta-2025 .btn-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.btn-cta-2025 .btn-icon {
    position: relative;
    z-index: 1;
}

/* ===== STRATEGIC GOALS SECTION ===== */
.strategic-goals-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 80px 0;
}

.strategic-goals-section .container {
    position: relative;
    z-index: 2;
}

.goals-wrapper {
    position: relative;
}

.goal-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 146, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--genodent-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px var(--genodent-shadow-primary);
    border: 2px solid var(--genodent-primary);
}

.goal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--genodent-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.goal-desc {
    color: var(--genodent-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== COMPANY VALUES SECTION ===== */
.company-values-section {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);    position: relative;
    overflow: hidden;
}

.values-wrapper {
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.value-card {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;

    border: 1px solid rgba(0, 146, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--genodent-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px var(--genodent-shadow-primary);
    z-index: 1;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== ACHIEVEMENTS ROADMAP SECTION ===== */
.achievements-roadmap-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);    overflow: hidden;
    padding: 80px 0;
}

.achievements-roadmap-section .container {
    position: relative;
    z-index: 2;
}

.roadmap-wrapper {
    position: relative;
}

.achievements-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-period {
    margin-bottom: 60px;
    position: relative;
}

.timeline-period::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
    transform: translateX(-50%);
    z-index: -1;
}

.timeline-period:last-child::before {
    display: none;
}

.period-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.period-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px var(--genodent-shadow-primary);
    position: relative;
    border: 2px solid var(--genodent-primary);
}

.period-icon.short-term {
    background: var(--genodent-gradient-primary);
    box-shadow: 0 10px 30px var(--genodent-shadow-primary);
}

.period-icon.medium-term {
    background: var(--genodent-gradient-secondary);
    box-shadow: 0 10px 30px var(--genodent-shadow-secondary);
}

.period-icon.long-term {
    background: var(--genodent-gradient-mixed);
    box-shadow: 0 10px 30px var(--genodent-shadow-primary);
}

.period-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--genodent-text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.period-subtitle {
    color: var(--genodent-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;

    border: 1px solid rgba(0, 146, 69, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--genodent-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px var(--genodent-shadow-primary);
    border: 1px solid var(--genodent-primary);
    position: relative;
    z-index: 2;
}

.achievement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--genodent-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.achievement-content p {
    color: var(--genodent-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* ===== ICONS STYLING ===== */
.social-icons .btn-outline-primary,
.separator-icon,
.footer-social .social-link,
.contact-item .icon-container,
.fab, .fas {
    color: var(--primary) !important;
}

.feature-icon i,
.facility-icon i,
.goal-icon i,
.value-icon i,
.achievement-icon i,
.period-icon i,
.cta-icon i {
    color: white !important;
}

.cart-link {
    color: black !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-bg-title { font-size: 2rem; }
    .hero-bg-desc { font-size: 1rem; }
    .hero-bg-image-section {
        min-height: 85vh;
        padding-top: 70px;
    }

    .our-story-section,
    .facility-section-2025,
    .certifications-section,
    .cta-section-2025,
    .strategic-goals-section,
    .achievements-roadmap-section {
        padding: 60px 0;
    }

    .story-title { font-size: 2rem; }
    .facility-card { margin-bottom: 20px; }
    .facility-card-image { height: 180px; }
    .facility-card-body { padding: 25px; }
    .facility-icon { width: 50px; height: 50px; }
    .facility-icon i { font-size: 20px; }
    .facility-title { font-size: 1.3rem; }

    .vision-card, .mission-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    .vision-icon, .mission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .vision-icon i, .mission-icon i { font-size: 30px; }
    .vision-title, .mission-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .certifications-grid { gap: 20px; }
    .certification-card { padding: 25px; }
    .certification-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    .certification-icon img {
        width: 50px;
        height: 50px;
    }
    .certification-title { font-size: 1.2rem; }

    .cta-card-inner { padding: 40px 30px; }
    .cta-title-2025 { font-size: 2rem; }
    .cta-desc { font-size: 1rem; }
    .cta-action-2025 {
        margin-top: 30px;
        flex-direction: row;
        gap: 15px;
    }
    .cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
    }
    .cta-icon i { font-size: 2rem; }
    .btn-cta-2025 { max-width: 200px; }
}

@media (max-width: 767px) {
    .hero-bg-title { font-size: 1.3rem; }
    .hero-bg-btn { padding: 10px 18px; font-size: 1rem; }
    .hero-bg-image-section {
        min-height: 80vh;
        padding-top: 60px;
    }

    .story-title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }
    .story-lead, .story-text { text-align: center; }
    .story-image-wrapper { margin-bottom: 50px; }

    .facility-card-image { height: 160px; }
    .facility-card-body { padding: 20px; }

    .vision-card, .mission-card { padding: 25px; }
    .vision-features, .mission-features {
        flex-direction: column;
        gap: 8px;
    }
    .vision-decoration, .mission-decoration {
        width: 80px;
        height: 80px;
    }

    .certifications-grid { grid-template-columns: 1fr; }
    .certification-card { padding: 20px; }
    .certification-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    .certification-icon img {
        width: 40px;
        height: 40px;
    }

    .cta-card-inner {
        padding: 30px 20px;
        text-align: center;
    }
    .cta-title-2025 { font-size: 1.8rem; }
    .cta-features li { justify-content: center; }
    .cta-action-2025 {
        flex-direction: column;
        margin-top: 20px;
    }
    .btn-cta-2025 {
        width: 100%;
        max-width: 100%;
    }

    .goal-card, .value-card { padding: 25px 20px; }
    .goal-title, .value-title { font-size: 1.2rem; }
    .goal-icon, .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .values-grid { grid-template-columns: 1fr; }

    .achievements-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .achievement-item { padding: 20px 15px; }
    .period-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    .period-title { font-size: 1.6rem; }
    .period-subtitle { font-size: 1rem; }
    .achievement-content h4 { font-size: 1rem; }
    .achievement-content p { font-size: 0.9rem; }
    .timeline-period::before {
        left: 20px;
        transform: none;
    }
    .timeline-period { margin-bottom: 40px; }
}

@media (max-width: 600px) {
    .hero-bg-image-section {
        min-height: 80vh;
        padding-top: 60px;
        background-attachment: scroll !important;
    }
}
