/* Dr. Rashid Gazzali - Modern Redesign 2026 | Luxury Minimal + Glass Morphism */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --midnight: #0c1b33;
    --midnight-soft: #132444;
    --midnight-deep: #070f1e;
    --copper: #d4a853;
    --copper-light: #e8c87a;
    --copper-muted: rgba(212,168,83,.15);
    --ivory: #faf9f6;
    --ivory-warm: #f5f1eb;
    --white: #fff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --font-display: 'Cormorant Garamond',Georgia,serif;
    --font-body: 'DM Sans',-apple-system,sans-serif;
    --ease: cubic-bezier(.16,1,.3,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
    --shadow-s: 0 2px 20px rgba(12,27,51,.04);
    --shadow-m: 0 8px 40px rgba(12,27,51,.06);
    --shadow-l: 0 20px 60px rgba(12,27,51,.1);
    --glow: 0 0 40px rgba(212,168,83,.15);
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--midnight);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.01em
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .4s var(--ease)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

::selection {
    background: var(--copper);
    color: var(--midnight)
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease),transform .8s var(--ease)
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--midnight);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease),visibility .6s
}

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

.preloader-logo img {
    width: 140px;
    filter: brightness(0) invert(1);
    animation: breathe 2s ease-in-out infinite
}

@keyframes breathe {
    0%,100% {
        opacity: .6;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.03)
    }
}

/* Top Bar */
.top-bar {
    background: var(--midnight-deep);
    padding: 10px 0;
    font-size: .82rem;
    letter-spacing: .02em;
    color: var(--slate-400);
    border-bottom: 1px solid rgba(255,255,255,.05)
}

    .top-bar a {
        color: var(--slate-400)
    }

        .top-bar a:hover {
            color: var(--copper)
        }

.top-info {
    display: flex;
    gap: 24px;
    align-items: center
}

    .top-info i {
        color: var(--copper);
        font-size: .75rem;
        margin-right: 6px
    }

.social-links {
    display: flex;
    gap: 4px
}

    .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.04);
        color: var(--slate-400);
        font-size: .78rem;
        transition: all .3s var(--ease)
    }

        .social-links a:hover {
            background: var(--copper);
            color: var(--midnight);
            transform: translateY(-2px)
        }

/* Nav */
.main-nav {
    background: rgba(12,27,51,.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    z-index: 1000;
    transition: all .4s var(--ease)
}

    .main-nav.scrolled {
        background: rgba(12,27,51,.98) !important;
        box-shadow: 0 4px 30px rgba(0,0,0,.2)
    }

.nav-logo {
    height: 58px;
    filter: brightness(0) invert(1);
    transition: all .3s
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,.7) !important;
    font-weight: 500;
    padding: 1.1rem .85rem !important;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    position: relative;
    transition: all .3s
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--copper);
        transform: translateX(-50%);
        transition: width .4s var(--ease)
    }
.dropdown-toggle::after {
    display: none !important;
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: #fff !important
    }

        .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
            width: 20px
        }

.btn-book-now {
    background: var(--copper) !important;
    color: var(--midnight) !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    font-size: .82rem !important;
    padding: .55rem 1.6rem !important;
    margin-left: .5rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(212,168,83,.3)
}

    .btn-book-now:hover {
        background: var(--copper-light) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(212,168,83,.4)
    }

.dropdown-menu {
    background: var(--midnight);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md);
    padding: .75rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    backdrop-filter: blur(20px)
}

.dropdown-item {
    color: rgba(255,255,255,.7);
    padding: .6rem 1.5rem;
    font-size: .88rem;
    letter-spacing: .02em
}

    .dropdown-item:hover {
        background: rgba(255,255,255,.06);
        color: var(--copper)
    }

/* Buttons */
.btn-accent {
    background: var(--copper);
    color: var(--midnight);
    border: none;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 20px rgba(212,168,83,.25)
}

    .btn-accent:hover {
        background: var(--copper-light);
        color: var(--midnight);
        transform: translateY(-3px);
        box-shadow: var(--glow)
    }

.btn-primary-custom {
    background: var(--midnight);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .4s var(--ease)
}

    .btn-primary-custom:hover {
        background: var(--midnight-soft);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-l)
    }

.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .04em;
    text-transform: uppercase
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.5);
        color: #fff
    }

/* Sections */
.section-padding {
    padding: 100px 0
}

.bg-light-custom {
    background: var(--ivory)
}

.bg-navy {
    background: var(--midnight)
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--copper);
    margin-bottom: 16px
}

    .section-tag::before {
        content: '';
        width: 24px;
        height: 1.5px;
        background: var(--copper)
    }

    .section-tag.light {
        color: var(--copper-light)
    }

        .section-tag.light::before {
            background: var(--copper-light)
        }

    .section-tag.centered {
        justify-content: center
    }

        .section-tag.centered::after {
            content: '';
            width: 24px;
            height: 1.5px;
            background: var(--copper);
            margin-left: 8px
        }

.section-title {
    font-size: clamp(2rem,4vw,3.2rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.15
}

    .section-title.white {
        color: var(--white)
    }

.section-subtitle {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.8
}

    .section-subtitle.centered {
        text-align: center
    }

.title-tagline {
    color: var(--copper);
    font-weight: 400;
    font-size: 1.15rem;
    font-family: var(--font-display);
    font-style: italic
}

.message-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg,var(--copper),transparent);
    margin: 20px 0
}

/* Page Header */
.page-header {
    background: var(--midnight);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(212,168,83,.06) 0%,transparent 70%)
    }

    .page-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,transparent,rgba(212,168,83,.3),transparent)
    }

    .page-header h1 {
        color: var(--white);
        font-size: clamp(2rem,4vw,3rem);
        margin-bottom: 12px;
        font-weight: 500
    }

    .page-header .breadcrumb {
        background: none;
        padding: 0;
        margin: 0
    }

    .page-header .breadcrumb-item a {
        color: var(--copper-light);
        font-size: .85rem
    }

    .page-header .breadcrumb-item.active {
        color: var(--slate-400);
        font-size: .85rem
    }

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--slate-600)
    }

.page-header-sm {
    padding: 60px 0 35px
}

/* Hero */
.hero-section {
    position: relative
}

.hero-slide {
    height: 92vh;
    min-height: 600px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,rgba(7,15,30,.92) 0%,rgba(12,27,51,.75) 40%,rgba(12,27,51,.55) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
    padding-top: 16vh
}

.hero-title {
    font-size: clamp(2.8rem,5.5vw,4.5rem);
    color: #fff;
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -.02em
}

.hero-caption {
    font-size: 1.15rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 520px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-slider .swiper-pagination {
    bottom: 40px !important
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,.3);
    width: 40px;
    height: 3px;
    border-radius: 2px;
    opacity: 1;
    transition: all .4s
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--copper);
    width: 60px
}

.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev {
    color: rgba(255,255,255,.5);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    transition: all .3s
}

    .hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after {
        font-size: 16px
    }

    .hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover {
        border-color: var(--copper);
        color: var(--copper);
        background: rgba(212,168,83,.1)
    }

/* Personal Message */
.personal-message-section {
    position: relative;
    overflow: hidden
}

    .personal-message-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 20% 50%,var(--copper-muted) 0%,transparent 60%);
        pointer-events: none
    }

.personal-image-wrapper {
    position: relative
}

.personal-image {
    max-height: 600px;
    width: auto;
    position: relative;
    z-index: 2;
    border-radius: var(--r-lg);
    filter: drop-shadow(0 30px 60px rgba(12,27,51,.15))
}

.image-accent-border {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--copper);
    border-radius: var(--r-lg);
    z-index: 1;
    opacity: .3
}

.image-accent-dot {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,var(--copper) 1.5px,transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
    opacity: .2;
    border-radius: var(--r-md)
}

.personal-message-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--slate-600)
}

.personal-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px
}

.stat-item {
    text-align: left;
    position: relative
}

    .stat-item::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 15%;
        height: 70%;
        width: 1px;
        background: var(--slate-200)
    }

    .stat-item:last-child::after {
        display: none
    }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1;
    background: linear-gradient(135deg,var(--midnight),var(--midnight-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.stat-label {
    display: block;
    color: var(--slate-400);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 4px
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-100);
    transition: all .5s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,var(--copper),var(--copper-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .5s var(--ease)
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-l);
        border-color: transparent
    }

        .service-card:hover::before {
            transform: scaleX(1)
        }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg,var(--midnight),var(--midnight-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1.3rem;
    margin-bottom: 24px;
    transition: all .5s var(--ease)
}

.service-card:hover .service-icon {
    background: var(--copper);
    color: var(--midnight);
    transform: rotate(-5deg) scale(1.05)
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600
}

.service-card p {
    color: var(--slate-500);
    font-size: .92rem;
    line-height: 1.7
}

.service-link {
    color: var(--copper);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px
}

    .service-link i {
        transition: transform .3s var(--spring)
    }

    .service-link:hover {
        color: var(--midnight)
    }

        .service-link:hover i {
            transform: translateX(4px)
        }

.service-card-lg .service-card-image {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
    height: 200px
}

    .service-card-lg .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease)
    }

.service-detail-image {
    width: 100%;
    border-radius: var(--r-xl);
    margin-bottom: 32px
}

.service-icon-large {
    font-size: 2.5rem;
    color: var(--copper);
    margin-bottom: 16px
}

/* Exclusive Program */
.program-banner {
    background: var(--midnight);
    border-radius: var(--r-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center
}

.program-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg,rgba(12,27,51,.94),rgba(7,15,30,.88))
}

.program-banner .row {
    position: relative;
    z-index: 2
}

.program-badge {
    display: inline-block;
    background: rgba(212,168,83,.15);
    color: var(--copper);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 16px;
    border: 1px solid rgba(212,168,83,.2)
}

.program-title {
    color: #fff;
    font-size: clamp(1.5rem,3vw,2.2rem);
    font-weight: 500
}

.program-subtitle {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem
}

.program-meta {
    color: var(--copper-light);
    font-size: .9rem;
    margin-top: 12px
}

    .program-meta i {
        margin-right: 6px
    }

    .program-meta span + span {
        margin-left: 24px
    }

.program-desc {
    color: rgba(255,255,255,.5);
    margin-top: 12px
}

.event-countdown {
    display: flex;
    gap: 12px;
    justify-content: flex-end
}

.countdown-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md);
    padding: 14px 18px;
    text-align: center;
    min-width: 70px;
    backdrop-filter: blur(10px)
}

    .countdown-item span {
        display: block;
        font-size: 2rem;
        font-weight: 600;
        color: var(--copper);
        font-family: var(--font-display);
        line-height: 1
    }

    .countdown-item small {
        color: rgba(255,255,255,.4);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-top: 4px;
        display: block
    }

/* Awards */
.award-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all .5s var(--ease);
    height: 100%;
    backdrop-filter: blur(10px)
}

    .award-card:hover {
        background: rgba(255,255,255,.06);
        transform: translateY(-8px);
        border-color: rgba(212,168,83,.2);
        box-shadow: 0 20px 50px rgba(0,0,0,.2)
    }

.award-icon {
    font-size: 2rem;
    color: var(--copper);
    margin-bottom: 16px;
    opacity: .8
}

.award-image {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: var(--r-sm)
}

.award-year {
    display: inline-block;
    background: rgba(212,168,83,.15);
    color: var(--copper);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .05em
}

.award-card h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 500
}

.award-card p {
    color: rgba(255,255,255,.45);
    font-size: .85rem
}

.awards-timeline {
    position: relative;
    padding-left: 60px;
    max-width: 900px;
    margin: 0 auto
}

    .awards-timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg,var(--copper),var(--slate-200))
    }

.awards-timeline-item {
    position: relative;
    margin-bottom: 36px
}

.awards-timeline-dot {
    position: absolute;
    left: -48px;
    top: 16px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 700;
    color: var(--copper);
    box-shadow: 0 0 0 8px var(--white),var(--shadow-s)
}

    .awards-timeline-dot i {
        font-size: .9rem
    }

.awards-timeline-content {
    background: var(--white);
    padding: 28px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-m);
    border: 1px solid var(--slate-100);
    transition: all .4s var(--ease)
}

    .awards-timeline-content:hover {
        transform: translateX(8px);
        box-shadow: var(--shadow-l)
    }

    .awards-timeline-content h3 {
        font-size: 1.3rem;
        margin-bottom: 4px
    }

.awards-org {
    color: var(--copper);
    font-weight: 500;
    font-size: .9rem
}

.awards-image {
    width: 100%;
    border-radius: var(--r-md);
    object-fit: cover;
    max-height: 200px
}

/* Testimonials */
.testimonials-section {
    background: var(--ivory);
    position: relative
}

    .testimonials-section::before {
        content: '\201C';
        position: absolute;
        top: 40px;
        right: 60px;
        font-family: var(--font-display);
        font-size: 20rem;
        line-height: 1;
        color: var(--copper);
        opacity: .04;
        pointer-events: none
    }

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-s);
    height: 100%;
    border: 1px solid var(--slate-100);
    transition: all .4s var(--ease)
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-l);
        transform: translateY(-4px)
    }

.testimonial-quote {
    color: var(--copper);
    font-size: 1.5rem;
    margin-bottom: 16px;
    opacity: .4
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--slate-600);
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-display)
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--copper-muted)
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--midnight),var(--midnight-soft));
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem
}

.testimonial-author h5 {
    font-size: .95rem;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--slate-400)
}

.testimonial-rating {
    color: var(--copper);
    font-size: .8rem;
    margin-top: 16px;
    letter-spacing: 2px
}

/* Clients */
.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    background: var(--white);
    transition: all .4s var(--ease)
}

    .client-logo:hover {
        box-shadow: var(--shadow-m);
        border-color: transparent
    }

    .client-logo img {
        max-height: 44px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(100%) opacity(.5);
        transition: all .4s
    }

    .client-logo:hover img {
        filter: grayscale(0%) opacity(1)
    }

.client-name-text {
    font-weight: 600;
    color: var(--slate-400);
    font-size: .82rem
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: all .5s var(--ease);
    height: 100%
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-l);
        border-color: transparent
    }

.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease)
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.06)
}

.blog-card-body {
    padding: 24px
}

.blog-meta {
    font-size: .78rem;
    color: var(--slate-400);
    margin-bottom: 12px;
    display: flex;
    gap: 16px
}

    .blog-meta i {
        color: var(--copper);
        margin-right: 4px
    }

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600
}

    .blog-card h3 a {
        color: var(--midnight)
    }

        .blog-card h3 a:hover {
            color: var(--copper)
        }

.blog-card p {
    color: var(--slate-500);
    font-size: .9rem;
    line-height: 1.7
}

.read-more {
    color: var(--copper);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px
}

    .read-more i {
        transition: transform .3s var(--spring);
        font-size: .7rem
    }

    .read-more:hover {
        color: var(--midnight)
    }

        .read-more:hover i {
            transform: translateX(4px)
        }

.tag-badge {
    display: inline-block;
    background: var(--ivory);
    color: var(--slate-600);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: .72rem;
    margin: 2px 4px 2px 0;
    transition: all .3s;
    font-weight: 500
}

    .tag-badge:hover {
        background: var(--copper);
        color: var(--midnight)
    }

.blog-tags {
    margin-bottom: .75rem
}

.blog-detail h1 {
    font-size: clamp(1.8rem,3vw,2.5rem);
    margin-bottom: 16px;
    font-weight: 600
}

.blog-detail-meta {
    color: var(--slate-400);
    font-size: .88rem;
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

    .blog-detail-meta span {
        margin-right: 0
    }

    .blog-detail-meta i {
        color: var(--copper);
        margin-right: 6px
    }

.blog-detail-image {
    width: 100%;
    border-radius: var(--r-lg);
    margin-bottom: 32px
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--slate-700)
}

    .blog-detail-content h2, .blog-detail-content h3 {
        margin-top: 32px;
        margin-bottom: 16px
    }

    .blog-detail-content p {
        margin-bottom: 1.25rem
    }

    .blog-detail-content img {
        border-radius: var(--r-md);
        margin: 16px 0
    }

    .blog-detail-content blockquote {
        border-left: 3px solid var(--copper);
        padding: 20px 24px;
        margin: 24px 0;
        background: var(--ivory);
        font-style: italic;
        color: var(--slate-600);
        border-radius: 0 var(--r-md) var(--r-md) 0;
        font-family: var(--font-display);
        font-size: 1.1rem
    }

.blog-share, .blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    background: var(--slate-50);
    color: var(--slate-500);
    border: 1px solid var(--slate-200);
    transition: all .3s var(--ease)
}

    .share-btn:hover {
        background: var(--midnight);
        color: #fff;
        border-color: var(--midnight);
        transform: translateY(-2px)
    }

.share-btn-lg {
    width: auto;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .8rem;
    gap: 6px
}

.share-buttons {
    display: flex;
    gap: 6px
}

.related-posts h4 {
    margin-bottom: 16px;
    font-size: 1.2rem
}

.related-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate-100)
}

    .related-post-item img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: var(--r-sm)
    }

    .related-post-item a {
        font-weight: 600;
        font-size: .9rem;
        color: var(--midnight)
    }

    .related-post-item small {
        color: var(--slate-400);
        display: block;
        margin-top: 4px;
        font-size: .8rem
    }

/* News */
.news-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: all .5s var(--ease);
    height: 100%
}

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-l);
        border-color: transparent
    }

.news-card-image {
    display: block;
    height: 200px;
    overflow: hidden
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.06)
}

.news-card-body {
    padding: 24px
}

.news-date {
    font-size: .72rem;
    color: var(--copper);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.news-card h4 {
    font-size: 1.1rem;
    margin: 8px 0;
    font-weight: 600
}

    .news-card h4 a {
        color: var(--midnight)
    }

        .news-card h4 a:hover {
            color: var(--copper)
        }

.news-card p {
    color: var(--slate-500);
    font-size: .9rem
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px
}

/* Video */
.video-card {
    transition: all .5s var(--ease);
    margin-bottom: 16px
}

    .video-card:hover {
        transform: translateY(-8px)
    }

.video-thumb {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-s)
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease)
    }

    .video-thumb:hover img {
        transform: scale(1.06)
    }

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12,27,51,.2);
    transition: all .4s
}

    .video-play-btn i {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255,255,255,.95);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--midnight);
        font-size: 1.1rem;
        padding-left: 3px;
        transition: all .4s var(--spring);
        box-shadow: 0 8px 30px rgba(0,0,0,.2)
    }

.video-thumb:hover .video-play-btn {
    background: rgba(12,27,51,.4)
}

    .video-thumb:hover .video-play-btn i {
        transform: scale(1.1);
        background: var(--copper);
        color: var(--midnight)
    }

.video-card h4 {
    font-size: 1rem;
    margin-top: 12px;
    font-family: var(--font-body);
    font-weight: 600
}

.video-duration-badge {
    position: absolute;
    top: 12px;
    right: 12px
}

    .video-duration-badge span {
        background: rgba(0,0,0,.6);
        color: #fff;
        padding: 3px 10px;
        border-radius: 50px;
        font-size: .72rem;
        backdrop-filter: blur(6px)
    }

/* Gallery */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.filter-btn {
    background: transparent;
    color: var(--slate-500);
    border: 1.5px solid var(--slate-200);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s var(--ease);
    text-decoration: none;
    display: inline-block;
    letter-spacing: .02em
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--midnight);
        color: #fff;
        border-color: var(--midnight)
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 16px
}

.gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease)
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(12,27,51,.7) 0%,transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    padding: 24px;
    opacity: 0;
    transition: opacity .4s
}

.gallery-item:hover img {
    transform: scale(1.06)
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1
}

.gallery-item-overlay i {
    font-size: 1.3rem;
    margin-bottom: 8px
}

.gallery-item-overlay span {
    font-size: .88rem;
    font-weight: 500
}

.instagram-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-100);
    overflow: hidden
}

.instagram-embed-wrapper iframe {
    width: 100%;
    min-height: 450px;
    border: none
}

/* Contact/Booking */
.contact-info-wrapper {
    padding-right: 40px
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg,var(--midnight),var(--midnight-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1rem
}

.contact-info-item h5 {
    font-size: .95rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600
}

.contact-info-item a, .contact-info-item p {
    color: var(--slate-500);
    font-size: .92rem;
    margin: 0
}

    .contact-info-item a:hover {
        color: var(--copper)
    }

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--slate-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 1rem;
    margin-right: 8px;
    transition: all .3s var(--ease)
}

    .social-circle:hover {
        background: var(--midnight);
        border-color: var(--midnight);
        color: #fff;
        transform: translateY(-3px)
    }

.contact-form-wrapper, .booking-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-l);
    border: 1px solid var(--slate-100)
}

.form-floating .form-control, .form-floating .form-select {
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 1rem;
    font-family: var(--font-body);
    transition: all .3s
}

    .form-floating .form-control:focus, .form-floating .form-select:focus {
        border-color: var(--copper);
        box-shadow: 0 0 0 4px var(--copper-muted)
    }

.booking-info {
    padding-right: 32px
}

.booking-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px
}

    .booking-feature i {
        font-size: 1.4rem;
        color: var(--copper);
        margin-top: 2px
    }

    .booking-feature h5 {
        font-size: .95rem;
        margin-bottom: 4px;
        font-family: var(--font-body);
        font-weight: 600
    }

    .booking-feature p {
        color: var(--slate-500);
        font-size: .88rem;
        margin: 0
    }

.booking-phone, .booking-email {
    display: block;
    color: var(--midnight);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px
}

    .booking-phone i, .booking-email i {
        color: var(--copper);
        margin-right: 8px
    }

.sidebar-cta {
    background: var(--ivory);
    padding: 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-100)
}

    .sidebar-cta h4 {
        font-size: 1.15rem
    }

.sidebar-contact p {
    margin-bottom: 8px;
    font-size: .92rem
}

.sidebar-contact i {
    color: var(--copper);
    margin-right: 8px
}

/* About */
.about-main-image {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-l)
}

.about-image-wrapper {
    position: relative
}

.about-accent-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: var(--copper);
    color: var(--midnight);
    padding: 16px 24px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-l)
}

.accent-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: var(--font-display);
    line-height: 1
}

.accent-text {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.about-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--slate-600);
    margin-bottom: 12px
}

.about-section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

    .about-section-title i {
        color: var(--copper)
    }

.prp-items {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prp-item {
    display: flex;
    gap: 16px
}

.prp-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-md);
    background: rgba(212,168,83,.1);
    border: 1px solid rgba(212,168,83,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1.1rem
}

.prp-item h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px
}

.prp-item p {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    margin: 0
}

.prp-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px
}

.prp-circle {
    position: relative;
    width: 260px;
    height: 260px
}

.prp-circle-inner {
    position: absolute;
    inset: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--copper-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--midnight);
    box-shadow: 0 0 50px rgba(212,168,83,.3);
    z-index: 2
}

.prp-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,168,83,.15)
}

    .prp-orbit span {
        position: absolute;
        background: rgba(212,168,83,.08);
        color: var(--copper-light);
        padding: 5px 14px;
        border-radius: 50px;
        font-size: .72rem;
        font-weight: 600;
        white-space: nowrap;
        letter-spacing: .05em;
        border: 1px solid rgba(212,168,83,.1)
    }

.prp-orbit-1 {
    inset: 0;
    animation: orbit 25s linear infinite
}

    .prp-orbit-1 span {
        top: -14px;
        left: 50%;
        transform: translateX(-50%)
    }

.prp-orbit-2 {
    inset: -40px;
    animation: orbit 30s linear infinite reverse
}

    .prp-orbit-2 span {
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%)
    }

.prp-orbit-3 {
    inset: -80px;
    animation: orbit 35s linear infinite
}

    .prp-orbit-3 span {
        right: -24px;
        top: 50%;
        transform: translateY(-50%)
    }

@keyframes orbit {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.happiness-forum-box {
    background: var(--ivory-warm);
    border: 1px solid rgba(212,168,83,.15);
    border-radius: var(--r-xl);
    padding: 40px;
    position: relative;
    overflow: hidden
}

    .happiness-forum-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,var(--copper-muted) 0%,transparent 70%);
        pointer-events: none
    }

    .happiness-forum-box h3 {
        color: var(--midnight)
    }

    .happiness-forum-box p {
        color: var(--slate-600);
        margin: 0;
        font-size: 1.02rem;
        position: relative
    }

.position-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.position-item {
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--slate-100);
    transition: all .3s var(--ease);
    position: relative;
    padding-left: 24px
}

    .position-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--copper);
        border-radius: 0 2px 2px 0;
        opacity: 0;
        transition: opacity .3s
    }

    .position-item:hover {
        box-shadow: var(--shadow-m);
        transform: translateX(4px)
    }

        .position-item:hover::before {
            opacity: 1
        }

    .position-item h5 {
        font-size: .95rem;
        margin-bottom: 2px;
        font-family: var(--font-body);
        font-weight: 600;
        color: var(--midnight)
    }

    .position-item p {
        color: var(--slate-400);
        font-size: .88rem;
        margin: 0
    }

.education-timeline {
    position: relative;
    padding-left: 32px;
    max-width: 700px;
    margin: 0 auto
}

    .education-timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg,var(--copper),var(--slate-200))
    }

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 24px
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 4px var(--white),0 0 0 5px var(--copper-muted)
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 2px
}

.timeline-content p {
    color: var(--slate-400);
    margin: 0;
    font-size: .9rem
}

/* CTA */
.cta-section {
    background: var(--midnight);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 800px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(212,168,83,.08) 0%,transparent 60%)
    }

.cta-content {
    position: relative;
    z-index: 2
}

    .cta-content h2 {
        color: #fff;
        font-size: clamp(1.8rem,3vw,2.5rem);
        font-weight: 500
    }

    .cta-content p {
        color: rgba(255,255,255,.55);
        font-size: 1.05rem;
        margin-bottom: 28px
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* Map */
.map-section iframe {
    display: block;
    width: 100%;
    height: 420px;
    filter: saturate(.6) contrast(1.05);
    border: none
}

/* Footer */
.site-footer {
    background: var(--midnight-deep);
    color: rgba(255,255,255,.55)
}

.footer-top {
    padding: 80px 0 40px
}

.footer-logo {
    max-width: 160px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px
}

.footer-widget p {
    font-size: .9rem;
    line-height: 1.8
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative
}

    .footer-widget h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--copper)
    }

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

    .footer-links li {
        margin-bottom: 10px
    }

    .footer-links a {
        color: rgba(255,255,255,.45);
        font-size: .88rem;
        transition: all .3s;
        display: inline-flex;
        align-items: center
    }

        .footer-links a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--copper);
            margin-right: 0;
            transition: all .3s
        }

        .footer-links a:hover {
            color: var(--copper)
        }

            .footer-links a:hover::before {
                width: 12px;
                margin-right: 8px
            }

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

    .footer-contact li {
        margin-bottom: 14px;
        font-size: .88rem;
        display: flex;
        gap: 12px;
        align-items: flex-start
    }

    .footer-contact i {
        color: var(--copper);
        margin-top: 4px;
        font-size: .85rem
    }

    .footer-contact a {
        color: rgba(255,255,255,.45)
    }

        .footer-contact a:hover {
            color: var(--copper)
        }

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.5);
        font-size: .85rem;
        transition: all .3s var(--ease)
    }

        .footer-social a:hover {
            background: var(--copper);
            border-color: var(--copper);
            color: var(--midnight);
            transform: translateY(-3px)
        }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: .82rem;
    color: rgba(255,255,255,.3)
}

    .footer-bottom p {
        margin: 0
    }

    .footer-bottom a {
        color: var(--copper)
    }

/* Floating */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--midnight);
    color: var(--copper);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    z-index: 999;
    box-shadow: var(--shadow-l);
    transition: all .4s var(--ease);
    border: 1px solid rgba(255,255,255,.08)
}

    .back-to-top.visible {
        display: flex
    }

    .back-to-top:hover {
        background: var(--copper);
        color: var(--midnight);
        transform: translateY(-4px)
    }

.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    transition: all .3s var(--spring)
}

    .whatsapp-float:hover {
        color: #fff;
        transform: scale(1.08) translateY(-3px);
        box-shadow: 0 8px 30px rgba(37,211,102,.4)
    }

/* Search/Pagination */
.blog-search .form-control {
    border: 1.5px solid var(--slate-200);
    border-radius: 50px 0 0 50px;
    padding: 12px 20px
}

.blog-search .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 20px
}

.pagination .page-link {
    color: var(--midnight);
    border-color: var(--slate-200);
    border-radius: var(--r-sm);
    margin: 0 2px;
    font-weight: 500
}

.pagination .page-item.active .page-link {
    background: var(--midnight);
    border-color: var(--midnight)
}

.pagination .page-link:hover {
    background: var(--ivory)
}

/* Responsive */
@media(max-width:991px) {
    .section-padding {
        padding: 70px 0
    }

    .hero-slide {
        height: 75vh;
        min-height: 500px
    }

    .personal-stats {
        gap: 24px
    }

    .stat-number {
        font-size: 2.2rem
    }

    .contact-info-wrapper, .booking-info {
        padding-right: 0
    }

    .contact-form-wrapper, .booking-form-wrapper {
        padding: 28px
    }

    .prp-visual {
        min-height: 250px
    }

    .prp-circle {
        width: 200px;
        height: 200px
    }
}

@media(max-width:767px) {
    .section-padding {
        padding: 56px 0
    }

    .hero-slide {
        height: 65vh;
        min-height: 420px
    }

    .hero-content {
        padding-top: 10vh
    }

    .hero-buttons {
        flex-direction: column
    }

    .page-header {
        padding: 60px 0 36px
    }

        .page-header h1 {
            font-size: 1.8rem
        }

    .personal-stats {
        gap: 16px;
        flex-wrap: wrap
    }

    .stat-item::after {
        display: none
    }

    .event-countdown {
        justify-content: center
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

        .cta-buttons .ms-3 {
            margin-left: 0 !important
        }

    .awards-timeline {
        padding-left: 44px
    }

    .awards-timeline-dot {
        left: -38px;
        width: 30px;
        height: 30px;
        font-size: .6rem
    }

    .footer-top {
        padding: 48px 0 24px
    }

    .about-accent-card {
        right: 8px;
        bottom: -16px
    }

    .program-banner {
        padding: 28px
    }

    .contact-social {
        margin-top: 24px
    }
}
