/* ============================================
   PLENUM EVENTS - PAGES STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-short {
    min-height: 40vh;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 92, 0.85) 0%, rgba(45, 74, 142, 0.75) 100%);
}

.page-hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Utility Classes */
.bg-light {
    background: #f8f9fa;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.story-content .lead {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus,
.stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.story-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.15);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.philosophy-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.1);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.philosophy-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.philosophy-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.philosophy-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Advantage Section */
.advantage-section {
    padding: 6rem 0;
    background: #fff;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantage-features {
    margin-top: 2rem;
}

.advantage-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(26, 43, 92, 0.1), rgba(74, 123, 167, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.legacy-badge {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(26, 43, 92, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.legacy-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.legacy-text {
    font-size: 1rem;
    opacity: 0.9;
    text-align: center;
    margin-top: 0.5rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 43, 92, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

/* Timeline */
.milestones-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2b5c 0%, #0f1a3a 100%);
}

.milestones-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.milestones-section .section-title {
    color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

/* Compact timeline variant */
.timeline-compact .timeline-item {
    padding: 0.5rem 0;
}

.timeline-compact .timeline-content {
    padding: 1rem 1.25rem;
}

.timeline-compact .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.timeline-compact .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 4px solid #fff;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-year {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Services Detail */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse>* {
    direction: ltr;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-detail-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--color-text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-icon span {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-connector {
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.process-step:last-child .process-connector {
    display: none;
}

.process-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    max-width: 150px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-section,
.gallery-filter-section {
    padding: 2rem 0;
    background: #fff;
}

.filter-tabs,
.gallery-filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn,
.gallery-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.gallery-filter-btn:hover,
.filter-btn.active,
.gallery-filter-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* Case Studies Grid */
.case-studies-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.15);
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 43, 92, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

.case-category {
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.case-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.case-content {
    padding: 1.5rem;
}

.case-client {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.case-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.case-content p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-stats {
    display: flex;
    gap: 1.5rem;
}

.case-stat {
    text-align: center;
}

.case-stat .stat-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.case-stat .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Gallery */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 43, 92, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    background: var(--color-primary);
}

.gallery-zoom:hover svg {
    color: #fff;
}

.gallery-zoom svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg,
.lightbox-nav svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

/* Client Stats */
.client-stats-section {
    padding: 4rem 0;
    background: #fff;
}

.client-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.client-stat-card:hover {
    background: var(--gradient-primary);
}

.client-stat-card:hover * {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.client-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.client-stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.client-stat-card .stat-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

/* Clients by Industry */
.clients-by-industry {
    padding: 4rem 0;
    background: #f8f9fa;
}

.industry-clients {
    margin-bottom: 3rem;
}

.industry-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
}

.industry-icon {
    font-size: 1.5rem;
}

.client-logos-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.client-logo-card {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 160px;
    background: #fff;
    padding: 1.25rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-light);
    height: 90px;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 43, 92, 0.1);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-placeholder {
    font-weight: 700;
    color: var(--color-primary);
}

/* Blog */
.featured-post-section {
    padding: 4rem 0;
    background: #fff;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.featured-content .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-category {
    background: rgba(26, 43, 92, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-date {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.featured-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.featured-content h2 a {
    color: var(--color-primary);
    text-decoration: none;
}

.featured-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-role {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.blog-categories-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.blog-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.blog-grid-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.blog-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.blog-content h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--color-accent);
}

.blog-content p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h2 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Contact Page */
.contact-page-section {
    padding: 4rem 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-page-grid .contact-form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.08);
}

.contact-page-grid .contact-form-container h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-page-grid .contact-form-container>p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    color: #fff;
}

.contact-info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-card .contact-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .contact-icon-box svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.contact-info-card .contact-info-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-card .contact-info-text a,
.contact-info-card .contact-info-text p {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
}

.contact-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #fff;
}

.contact-social .social-links svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.contact-social .social-links a:hover svg {
    fill: var(--color-primary);
}

.office-hours-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
}

.office-hours-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.hours-item .day {
    color: var(--color-text-secondary);
}

.hours-item .time {
    font-weight: 600;
}

.download-profile-card {
    background: linear-gradient(135deg, rgba(26, 43, 92, 0.05), rgba(74, 123, 167, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.download-profile-card .download-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-profile-card .download-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.download-profile-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.download-profile-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    display: block;
}

/* Download Section */
.download-section {
    padding: 4rem 0;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.profile-preview {
    position: sticky;
    top: 120px;
}

.preview-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.preview-mockup {
    display: flex;
    gap: 1rem;
    perspective: 1000px;
}

.mockup-page {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mockup-page.page-1 {
    transform: rotateY(5deg);
    z-index: 3;
}

.mockup-page.page-2 {
    transform: rotateY(0deg) translateX(-20px);
    z-index: 2;
}

.mockup-page.page-3 {
    transform: rotateY(-5deg) translateX(-40px);
    z-index: 1;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-logo {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.mockup-header span {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.mockup-title {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.mockup-subtitle {
    font-size: 0.5rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.mockup-line {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 0.25rem;
}

.mockup-line.short {
    width: 60%;
}

.mockup-section {
    height: 15px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mockup-text-lines {
    margin-bottom: 0.5rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mockup-box {
    height: 25px;
    background: #f0f4f8;
    border-radius: 4px;
}

.mockup-image {
    height: 40px;
    background: linear-gradient(135deg, #e0e5ec, #c9d1dc);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.preview-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.preview-badge span {
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download-intro {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.profile-contents {
    margin-bottom: 2rem;
}

.profile-contents h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contents-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contents-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contents-list svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.download-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.download-form-container h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.quick-download-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.quick-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(26, 43, 92, 0.05);
}

.quick-download-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.quick-download-content p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.quick-download-card .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.quick-download-card .btn svg {
    width: 18px;
    height: 18px;
}

.resources-section {
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    display: block;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-light);
}

.resource-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 43, 92, 0.1), rgba(74, 123, 167, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.resource-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.resource-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.resource-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonial Banner */
.testimonial-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a2b5c 0%, #0f1a3a 100%);
}

.testimonial-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-banner .quote-icon {
    width: 50px;
    height: 50px;
    fill: var(--color-accent);
    margin-bottom: 1.5rem;
}

.testimonial-banner blockquote {
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author-banner strong {
    display: block;
    color: #fff;
    font-size: 1.125rem;
}

.testimonial-author-banner span {
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Grid */
.clients-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-full {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.08);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote svg {
    width: 30px;
    height: 30px;
    fill: var(--color-primary);
    opacity: 0.3;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author-full {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-full img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-full h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.testimonial-author-full p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #1A2B5C 0%, #2D4A8E 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Additional Services Section */
.additional-services-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid var(--color-border-light);
}

.services-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.service-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 43, 92, 0.12);
    border-color: var(--color-primary);
}

.service-list-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-list-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 6rem 0;
    background: #fff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content .section-tag {
    background: rgba(26, 43, 92, 0.05);
    color: var(--color-primary);
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.service-stat p {
    color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-light);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offer-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.offer-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.offer-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Related Work Section */
.related-work-section {
    padding: 6rem 0;
}

.case-card-mini {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-card-mini:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-card-mini img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-card-mini-content {
    padding: 1.5rem;
}

.case-card-mini h4 {
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.case-card-mini p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(26, 43, 92, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: rgba(26, 43, 92, 0.05);
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {

    .philosophy-grid,
    .team-grid,
    .client-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .story-grid,
    .advantage-grid,
    .service-detail-card,
    .service-detail-grid,
    .offer-grid,
    .process-steps,
    .featured-post,
    .download-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .philosophy-grid,
    .team-grid,
    .case-studies-masonry,
    .gallery-masonry,
    .blog-grid,
    .resources-grid,
    .clients-testimonials .testimonials-grid,
    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .client-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .quick-download-card {
        flex-direction: column;
        text-align: center;
    }

    .gallery-item-tall,
    .gallery-item-wide {
        grid-row: auto;
        grid-column: auto;
        aspect-ratio: 1;
    }

    .contents-list {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ACHIEVEMENTS & PERSONALITIES SHOWCASE
   ============================================ */

/* Achievements Showcase Section */
.achievements-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.achievements-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.achievements-showcase .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.achievement-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.achievement-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 43, 92, 0.7) 100%);
}

.achievement-content {
    padding: 1.75rem;
    position: relative;
}

.achievement-content h3 {
    font-size: 1.4rem;
    color: #1a2b5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.achievement-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Personalities Showcase Section */
.personalities-showcase {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.personalities-showcase::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 43, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.personalities-showcase .section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.personalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.personality-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(26, 43, 92, 0.08);
}

.personality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 43, 92, 0.12);
}

.personality-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.personality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.personality-card:hover .personality-image img {
    transform: scale(1.1);
}

.personality-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(45, 74, 142, 0.7) 100%);
}

.personality-content {
    padding: 1.75rem;
    position: relative;
}

.personality-content h3 {
    font-size: 1.4rem;
    color: #1a2b5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.personality-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive for Achievements & Personalities */
@media (max-width: 768px) {
    .achievements-grid,
    .personalities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement-card,
    .personality-card {
        margin: 0 1rem;
    }
    
    .achievements-showcase,
    .personalities-showcase {
        padding: 4rem 0;
    }
}

/* ============================================
   GROUP LEGACY SECTION
   ============================================ */

.group-legacy-section {
    padding: 6rem 0;
    background: var(--color-bg-darker);
    position: relative;
    overflow: hidden;
}

.group-legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.group-legacy-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.group-legacy-section .section-tag {
    background: rgba(26, 43, 92, 0.08);
    border-color: var(--color-border);
    color: var(--color-primary);
}

.group-legacy-section .section-title {
    color: var(--color-primary);
}

.group-legacy-section .section-subtitle {
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.group-story {
    max-width: 1200px;
    margin: 0 auto;
}

.group-story .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.group-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.group-company-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26, 43, 92, 0.06);
}

.group-company-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 16px 40px rgba(26, 43, 92, 0.12);
}

.group-company-card.highlighted {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 12px 40px rgba(26, 43, 92, 0.25);
}

.group-company-card.highlighted:hover {
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.35);
    transform: translateY(-8px);
}

.company-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 14px rgba(26, 43, 92, 0.2);
}

.group-company-card.highlighted .company-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.company-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.group-company-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.group-company-card.highlighted h3 {
    color: #ffffff;
}

.group-company-card > p {
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.group-company-card.highlighted > p {
    color: rgba(255, 255, 255, 0.75);
}

.company-desc {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.group-company-card.highlighted .company-desc {
    color: rgba(255, 255, 255, 0.85);
}

.group-company-card.highlighted .company-desc strong {
    color: #ffffff;
}

.group-clarification {
    margin-top: 3rem;
}

.clarification-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(26, 43, 92, 0.08);
}

.clarification-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarification-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.clarification-content h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.clarification-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.clarification-list {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
}

.clarification-list li {
    color: var(--color-text-primary);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.clarification-list li:last-child {
    border-bottom: none;
}

.clarification-list strong {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .group-companies-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .clarification-box {
        flex-direction: column;
        padding: 1.75rem;
    }

    .group-legacy-section {
        padding: 4rem 0;
    }
}

/* ============================================
   UNIFIED EXCELLENCE SHOWCASE
   ============================================ */

.excellence-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.excellence-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.excellence-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: #fff;
}

.excellence-card h3 {
    font-size: 1.5rem;
    color: #1a2b5c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.excellence-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.excellence-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.excellence-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.excellence-preview img:hover {
    transform: scale(1.05);
}

.excellence-card .btn {
    margin-top: 1rem;
}

/* ============================================
   FULL PAGE LAYOUTS (ACHIEVEMENTS, PERSONALITIES, TESTIMONIALS)
   ============================================ */

.achievements-full-page,
.personalities-full-page,
.testimonials-full-page {
    padding: 4rem 0;
}

.achievements-masonry,
.personalities-masonry,
.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item,
.personality-item,
.testimonial-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover,
.personality-item:hover,
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.achievement-img img,
.personality-img img,
.testimonial-img img {
    width: 100%;
    height: auto;
    display: block;
}

.achievement-overlay,
.personality-overlay,
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 43, 92, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-item:hover .achievement-overlay,
.personality-item:hover .personality-overlay,
.testimonial-item:hover .testimonial-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 60px;
    height: 60px;
    background: #f97316;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.zoom-btn:hover {
    transform: scale(1.1);
}

.zoom-btn svg {
    width: 30px;
    height: 30px;
}

.testimonial-badge-full {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.testimonial-badge-full svg {
    width: 18px;
    height: 18px;
}

/* Lightbox - Improved Modal Design */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(249, 115, 22, 0.9);
    border-color: #f97316;
    transform: rotate(90deg);
}

#lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(249, 115, 22, 0.9);
    border-color: #f97316;
    transform: scale(1.1);
}

/* Featured Text Testimonials - Fixed Layout */
.featured-testimonials {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.featured-testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-testimonials .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: #1a2b5c;
    margin-bottom: 1rem;
}

.testimonials-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-text-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-text-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 43, 92, 0.15);
    border-color: #f97316;
}

.testimonial-text-card .quote-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.testimonial-text-card .quote-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-client {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-client h4 {
    color: #1a2b5c;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-client p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-masonry,
    .personalities-masonry,
    .testimonials-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .excellence-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
    
    .excellence-preview img {
        height: 80px;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
    
    #lightbox-img {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .testimonials-text-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-text-card {
        padding: 2rem;
    }
}
/* Empty Gallery State */
.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.empty-gallery h3 {
    font-size: 2rem;
    color: #1a2b5c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.empty-gallery p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-gallery .btn {
    margin-top: 1rem;
}

/* ============================================
   UNIFIED GALLERY WITH TABS
   ============================================ */

.gallery-tabs-section {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 80px;
    z-index: 90;
}

.gallery-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    outline: none;
}

.gallery-tab svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 43, 92, 0.1);
}

.gallery-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 43, 92, 0.25);
}

.gallery-tab.active svg {
    color: #fff;
}

.gallery-content-section {
    padding: 4rem 0;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Gallery Tabs */
@media (max-width: 768px) {
    .gallery-tabs-section {
        top: 70px;
        padding: 1.5rem 0;
    }

    .gallery-tabs {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .gallery-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .gallery-tab svg {
        width: 18px;
        height: 18px;
    }

    .gallery-tab span {
        display: none;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-content-section {
        padding: 2rem 0;
    }
}