/* ===============================================
   Hero Premium Section - Modern & Dynamic Design
   =============================================== */

/* Main Section */
.hero-premium {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 2rem 0 3rem;
    overflow: hidden;
    direction: rtl;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e8f5eb 100%);
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(87, 179, 103, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(63, 141, 77, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 70% 80%, rgba(87, 179, 103, 0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.15), rgba(87, 179, 103, 0.05));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(63, 141, 77, 0.1), rgba(87, 179, 103, 0.05));
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
    top: 50%;
    right: 60%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.03));
    bottom: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(87, 179, 103, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87, 179, 103, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 60% 60% at center, black 0%, transparent 70%);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Grid Layout */
.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Wrapper */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Intro Badge */
.hero-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(87, 179, 103, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    width: fit-content;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(87, 179, 103, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-intro-badge .badge-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.3), transparent 50%);
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-intro-badge i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.hero-intro-badge .badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #059669;
    margin-right: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Main Title */
.hero-main-title h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    color: var(--gray-900);
}

.hero-main-title .greeting {
    display: block;
    font-size: 0.5em;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.2rem;
}

.hero-main-title .name-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-main-title .role-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--gray-800);
    margin: 0.75rem 0;
}

.role-icon {
    font-size: 1.2em;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.tagline-accent {
    color: var(--gray-700);
    font-weight: 600;
}

.tagline-fade {
    color: var(--gray-500);
}

/* Stats Premium - Compact */
.hero-stats-premium {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
    border: 1px solid rgba(87, 179, 103, 0.12);
    border-radius: 12px;
    flex: 1;
    min-width: 120px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(87, 179, 103, 0.3);
    box-shadow:
        0 12px 30px rgba(87, 179, 103, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stat-card .stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(87, 179, 103, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1) 0%, rgba(87, 179, 103, 0.05) 100%);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-suffix {
    font-size: 0.75em;
    color: var(--primary-color);
    margin-right: 0.1rem;
}

.stat-title {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Certifications */
.hero-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cert-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #f9fdfa 100%);
    border: 1.5px solid rgba(87, 179, 103, 0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cert-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(87, 179, 103, 0.15);
}

.cert-badge i {
    font-size: 1rem;
}

.cert-badge.gcdf i {
    color: #f59e0b;
}

.cert-badge.pmp i {
    color: #3b82f6;
}

.cert-badge.p3 i {
    color: #8b5cf6;
}

.cert-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%);
    padding: 0.5rem 0.75rem;
    background: var(--gray-900);
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.cert-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
}

.cert-badge:hover .cert-tooltip {
    opacity: 1;
    visibility: visible;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 6px 20px rgba(87, 179, 103, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(87, 179, 103, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.cta-primary .cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-primary:hover .cta-bg {
    transform: translateX(100%);
}

.cta-primary .cta-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.cta-primary .cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, 0.3);
}

.cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: transparent;
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-secondary .cta-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-color);
    border-radius: inherit;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    color: white;
    text-decoration: none;
}

.cta-secondary:hover .cta-border {
    background: var(--primary-color);
}

.cta-secondary .cta-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Image Wrapper */
.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-premium {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
}

.frame-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(87, 179, 103, 0.2);
    z-index: 1;
}

.frame-decoration.top-left {
    top: -15px;
    right: -15px;
    border-bottom: none;
    border-left: none;
    border-radius: 0 20px 0 0;
}

.frame-decoration.top-right {
    top: -15px;
    left: -15px;
    border-bottom: none;
    border-right: none;
    border-radius: 20px 0 0 0;
}

.frame-decoration.bottom-left {
    bottom: -15px;
    right: -15px;
    border-top: none;
    border-left: none;
    border-radius: 0 0 20px 0;
}

.frame-decoration.bottom-right {
    bottom: -15px;
    left: -15px;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 20px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none !important;
    transition: none !important;
}

.image-container:hover .hero-image {
    transform: none !important;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Availability Badge */
.availability-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.availability-badge i {
    color: var(--primary-color);
}

.pulse-ring {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: pulse-ring-anim 2s ease-out infinite;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse-ring-anim {
    0% {
        transform: translateY(-50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(2);
        opacity: 0;
    }
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: float-badge 4s ease-in-out infinite;
}

.floating-badge.badge-exp {
    top: 15%;
    left: -10px;
    animation-delay: -1s;
}

.floating-badge i {
    color: #f59e0b;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

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

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

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat-card {
        min-width: 140px;
    }
}

@media (max-width: 991px) {
    .hero-premium {
        padding: 1.5rem 0 3rem;
        min-height: auto;
    }

    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content-wrapper {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .image-frame-premium {
        max-width: 320px;
        aspect-ratio: 1;
    }

    .hero-intro-badge {
        justify-content: center;
    }

    .hero-main-title .role-title {
        justify-content: center;
    }

    .hero-stats-premium {
        justify-content: center;
    }

    .cert-badges {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .floating-badge.badge-exp {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-premium {
        padding: 1rem 0 2.5rem;
    }

    .hero-main-title h1 {
        font-size: 2rem;
    }

    .hero-main-title .role-title {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-stats-premium {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        margin: 0 auto;
    }

    .stat-card {
        flex: 1;
        min-width: auto;
        padding: 0.75rem 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .stat-content {
        align-items: center;
    }

    .stat-value {
        font-size: 1.15rem;
        justify-content: center;
    }

    .stat-title {
        font-size: 0.6rem;
        text-align: center;
    }

    .cert-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .image-frame-premium {
        max-width: 280px;
    }

    .availability-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .frame-decoration {
        display: none;
    }
}

/* ===============================================
   Enhanced Sections - Premium Design
   =============================================== */

/* Capsule Grid Section - Premium Redesign */
.capsule-grid.enhanced {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.capsule-grid.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(87, 179, 103, 0.3), transparent);
}

.capsule-grid.enhanced .capsule-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.03) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 24px;
    border: 1px solid rgba(87, 179, 103, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.capsule-grid.enhanced .capsule-head::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(87, 179, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.capsule-grid.enhanced .capsule-head .eyebrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(87, 179, 103, 0.3);
}

.capsule-grid.enhanced .capsule-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0.5rem 0 0;
    line-height: 1.2;
}

.capsule-grid.enhanced .capsule-head>p {
    max-width: 400px;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border-right: 4px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.capsule-grid.enhanced .capsule-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.capsule-grid.enhanced .capsule-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(87, 179, 103, 0.08);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 240px;
}

.capsule-grid.enhanced .capsule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.capsule-grid.enhanced .capsule-item:hover::before {
    transform: scaleX(1);
}

.capsule-grid.enhanced .capsule-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(87, 179, 103, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(87, 179, 103, 0.2);
    text-decoration: none;
}

.capsule-grid.enhanced .capsule-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.08) 0%, rgba(87, 179, 103, 0.15) 100%);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.capsule-grid.enhanced .capsule-item:hover .capsule-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.capsule-grid.enhanced .capsule-icon i {
    font-size: 1.5rem;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.capsule-grid.enhanced .capsule-item:hover .capsule-icon i {
    color: white;
}

.capsule-grid.enhanced .capsule-item>span:first-of-type {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.capsule-grid.enhanced .capsule-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.capsule-grid.enhanced .capsule-item>p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.capsule-grid.enhanced .capsule-arrow {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(87, 179, 103, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.capsule-grid.enhanced .capsule-arrow i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.capsule-grid.enhanced .capsule-item:hover .capsule-arrow {
    background: var(--primary-color);
    transform: translateX(-5px);
}

.capsule-grid.enhanced .capsule-item:hover .capsule-arrow i {
    color: white;
}

/* Partners Section - Premium */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(87, 179, 103, 0.02) 50%, #ffffff 100%);
    position: relative;
}

.partners-section .partners-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.partners-section .partners-header .eyebrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(87, 179, 103, 0.3);
}

.partners-section .partners-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.partners-section .partner-item {
    background: #ffffff;
    border: 2px solid rgba(87, 179, 103, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.partners-section .partner-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(87, 179, 103, 0.15);
    transform: translateY(-3px);
}

.partners-section .partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partners-section .partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Booking Section - Premium */
.booking-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.02) 0%, transparent 50%, rgba(87, 179, 103, 0.02) 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(87, 179, 103, 0.2), transparent);
}

.booking-section .booking-header-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-section .booking-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-section .booking-title i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1) 0%, rgba(87, 179, 103, 0.05) 100%);
    padding: 1rem;
    border-radius: 16px;
}

.booking-section .booking-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.booking-section .booking-header-compact>p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.booking-section .slots-compact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-section .slot-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid rgba(87, 179, 103, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.booking-section .slot-compact:hover {
    transform: translateY(-3px);
    border-color: rgba(87, 179, 103, 0.25);
    box-shadow: 0 8px 25px rgba(87, 179, 103, 0.1);
}

.booking-section .slot-day .day-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1) 0%, rgba(87, 179, 103, 0.05) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.booking-section .slot-time-compact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-section .slot-time-compact i {
    color: var(--primary-color);
}

.booking-section .btn-slot {
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(87, 179, 103, 0.25);
}

.booking-section .btn-slot:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(87, 179, 103, 0.35);
}

.booking-section .btn-slot.disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    box-shadow: none;
    cursor: not-allowed;
}

/* Responsive for new sections */
@media (max-width: 1200px) {
    .capsule-grid.enhanced .capsule-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .capsule-grid.enhanced {
        padding: 2.5rem 0;
    }

    .capsule-grid.enhanced .capsule-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .capsule-grid.enhanced .capsule-head>p {
        max-width: 100%;
    }

    .capsule-grid.enhanced .capsule-items {
        grid-template-columns: 1fr;
    }

    .capsule-grid.enhanced .capsule-item {
        min-height: auto;
        padding: 1.5rem;
    }

    .partners-section {
        padding: 2.5rem 0;
    }

    .booking-section .booking-header-compact {
        flex-direction: column;
        text-align: center;
    }

    .booking-section .booking-title {
        justify-content: center;
    }

    .booking-section .slots-compact-grid {
        justify-content: center;
    }
}

/* ===============================================
   Testimonials Section - Premium Design
   =============================================== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(87, 179, 103, 0.03) 50%, #ffffff 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(87, 179, 103, 0.3), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header .eyebrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(87, 179, 103, 0.3);
}

.testimonials-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 1rem 0 0.5rem;
}

.testimonials-header p {
    color: var(--gray-500);
    font-size: 1rem;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(87, 179, 103, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(87, 179, 103, 0.12);
    border-color: rgba(87, 179, 103, 0.2);
}

.testimonial-card.featured {
    border-color: rgba(87, 179, 103, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(87, 179, 103, 0.02) 100%);
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1), rgba(87, 179, 103, 0.05));
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0 0 1.5rem;
    padding-right: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-rating i.far {
    color: #e5e7eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(87, 179, 103, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1), rgba(87, 179, 103, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* New testimonial author top styles */
.testimonial-author-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(87, 179, 103, 0.1);
}

.author-avatar-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(87, 179, 103, 0.2);
}

.author-avatar-placeholder-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.15), rgba(87, 179, 103, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    border: 3px solid rgba(87, 179, 103, 0.3);
}

.author-info-top {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-info-top strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info-top span {
    font-size: 0.9rem;
    color: var(--gray-500);
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .author-avatar-large,
    .author-avatar-placeholder-large {
        width: 60px;
        height: 60px;
    }
}

/* ===============================================
   Services Section - Premium Design
   =============================================== */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 50%, var(--gray-50) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(87, 179, 103, 0.3), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header .eyebrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(87, 179, 103, 0.3);
}

.services-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 1rem 0 0.5rem;
}

.services-header p {
    color: var(--gray-500);
    font-size: 1rem;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(87, 179, 103, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(87, 179, 103, 0.15);
    border-color: rgba(87, 179, 103, 0.2);
}

.service-card.featured {
    border-color: rgba(87, 179, 103, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(87, 179, 103, 0.03) 100%);
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.1), rgba(87, 179, 103, 0.05));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card>p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: right;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(87, 179, 103, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}