/*
Theme Name: Elika Conference Planner
Theme URI: https://dnac.org
Author: Elia Kallas
Author URI: https://eliakallas.com
Description: A professional WordPress theme for conference planning companies.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conference-planner
Tags: conference, event, professional, responsive
*/

/* ========================
   Reset & Base
   ======================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary:    #1a3a5c;
    --accent:     #e8630a;
    --light:      #f4f7fb;
    --text:       #2d2d2d;
    --muted:      #6b7a8d;
    --white:      #ffffff;
    --border:     #dde3ed;
    --radius:     6px;
    --shadow:     0 2px 12px rgba(0,0,0,.08);
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

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

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ========================
   Layout
   ======================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--gray { background: var(--light); }

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-block;
    padding: .75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--primary:hover {
    background: #cf5508;
    border-color: #cf5508;
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--secondary:hover {
    background: #0a2a5e;
    border-color: #0a2a5e;
    color: var(--white);
}

.btn--sm { padding: .5rem 1.2rem; font-size: .875rem; }

/* ========================
   Header / Navigation
   ======================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
}
/* Offset sticky header below WP admin bar when logged in */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1160px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.site-logo span { color: var(--accent); }

.site-logo img { height: 44px; width: auto; }

.site-logo .custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }

.footer-logo { display: inline-flex; align-items: center; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: auto; }
.footer-logo .custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.footer-logo .site-logo { color: var(--white); font-size: 1.35rem; font-weight: 800; text-decoration: none; }

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    transition: color var(--transition);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--accent); }

.nav-menu .btn { margin-left: .5rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 1rem 1.5rem 1.5rem;
    }
    .main-nav.open { display: block; }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ========================
   Hero
   ======================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a8c 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: .12;
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

.hero h1 { color: var(--white); margin-bottom: 1.2rem; }

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }

/* ========================
   Services
   ======================== */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.section-header .label {
    display: inline-block;
    background: rgba(232,99,10,.12);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 20px;
    margin-bottom: .75rem;
}

.section-header p { color: var(--muted); font-size: 1.05rem; }

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,99,10,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.service-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ========================
   Conference Listings
   ======================== */
.conferences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.conf-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.conf-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.12); }

.conf-card__img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    overflow: hidden;
    position: relative;
}

.conf-card__img img { width: 100%; height: 100%; object-fit: cover; }

.conf-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.conf-card__badge--past {
    background: #6b7280;
}

.conf-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.conf-card__meta {
    display: flex;
    gap: 1.25rem;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.conf-card__meta span { display: flex; align-items: center; gap: .3rem; }

.conf-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.conf-card p { color: var(--muted); font-size: .9rem; flex: 1; }

.conf-card__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conf-card__price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }

/* ========================
   Why Choose Us
   ======================== */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .why-us { grid-template-columns: 1fr; gap: 2rem; }
}

.why-us__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.why-us__image img { width: 100%; height: 380px; object-fit: cover; }

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(232,99,10,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.feature-list h4 { margin-bottom: .2rem; font-size: 1rem; }
.feature-list p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ========================
   Testimonials
   ======================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 1rem; font-size: 1.1rem; }

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text);
    margin: 0 0 1.5rem;
    line-height: 1.65;
}

.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light);
}

.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: var(--muted); }

/* ========================
   CTA Banner
   ======================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a8c 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 1.5rem;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================
   Contact Section
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); }

.contact-details { list-style: none; padding: 0; margin: 2rem 0; }
.contact-details li {
    display: flex;
    gap: .85rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
}
.contact-details li:last-child { border-bottom: none; }
.contact-details .icon { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea { min-height: 130px; resize: vertical; }

/* CF7 compatibility */
.wpcf7-form-control-wrap { display: block; }
.wpcf7-not-valid-tip { display: block; color: #c0392b; font-size: .8rem; margin-top: .3rem; }
.wpcf7-response-output {
    margin: 1rem 0 0;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    border: 1px solid transparent;
}
.wpcf7-mail-sent-ok     { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked     { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* ========================
   Footer
   ======================== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,.75);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding: 60px 0 40px;
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-top { grid-template-columns: 1fr; }
}

.footer-brand .site-logo { color: var(--white); }
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; }

.footer-col h4 {
    color: var(--white);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter input {
    width: 100%;
    padding: .65rem 1rem;
    border: none;
    border-radius: var(--radius) var(--radius) 0 0;
    font-size: .9rem;
    font-family: inherit;
}

.footer-newsletter .btn {
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: .65rem;
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--accent); }

.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ========================
   WordPress Widgets / Misc
   ======================== */
.wp-block-image { margin: 2rem 0; }

.page-content h2, .entry-content h2 { margin: 2rem 0 1rem; }
.page-content h3, .entry-content h3 { margin: 1.5rem 0 .75rem; }

.entry-title { margin-bottom: .5rem; }
.entry-meta { color: var(--muted); font-size: .85rem; margin-bottom: 1.5rem; }

/* ========================
   Responsive Utilities
   ======================== */
@media (max-width: 600px) {
    .section { padding: 50px 0; }
    .hero { padding: 70px 0 60px; }
    .hero-stats { gap: 1.5rem; }
}

/* ========================
   Conference Single Page
   ======================== */
.conf-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a8c 100%);
    color: #fff;
    padding: 60px 0;
}
.conf-hero__back {
    display: inline-block;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s;
}
.conf-hero__back:hover { color: #fff; }
.conf-hero__title {
    color: #fff;
    margin: 1rem 0 .5rem;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
}
.conf-hero__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    margin-top: 1rem;
}

.conf-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    padding: 50px 0;
}

.conf-thumbnail {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.conf-thumbnail img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.conf-sidebar__card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    position: sticky;
    top: 90px;
}
.conf-sidebar__card h3 { margin-bottom: 1.25rem; }

.conf-details { font-size: .9rem; }
.conf-details dt {
    font-weight: 600;
    color: var(--muted);
    margin-top: .75rem;
}
.conf-details dd { margin: .2rem 0 0; }
.conf-details__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.conf-sidebar__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

@media (max-width: 860px) {
    .conf-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 35px 0;
    }
    .conf-sidebar__card { position: static; }
}

@media (max-width: 600px) {
    .conf-hero { padding: 32px 0; }
    .conf-hero__meta { gap: .6rem 1rem; font-size: .875rem; }
    .conf-layout { padding: 24px 0; gap: 1.5rem; }
    .conf-sidebar__card { padding: 1.25rem; }
}

/* ========================
   Conference Slider
   ======================== */
.conf-slider-outer {
    position: relative;
}

.conf-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
    background: var(--primary);
    cursor: grab;
}
.conf-slider-wrap:active { cursor: grabbing; }

.conf-slider-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.conf-slide {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.conf-slide__img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.conf-slide__img--placeholder {
    height: 480px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a8c 55%, #3a7abf 100%);
}

.conf-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,18,38,.88) 0%,
        rgba(8,18,38,.35) 55%,
        transparent 100%
    );
}

.conf-slide__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 3rem;
    color: #fff;
    z-index: 2;
}

.conf-slide__badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .85rem;
    border-radius: 20px;
    letter-spacing: .06em;
    margin-bottom: .8rem;
}

.conf-slide__content h3 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: .6rem;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

.conf-slide__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    margin-bottom: 1.4rem;
}

.conf-slide__meta span {
    display: flex;
    align-items: center;
    gap: .35rem;
}

/* Prev / Next arrow buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    opacity: 0;
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition), opacity .25s ease;
}
.conf-slider-wrap:hover .slider-btn,
.conf-slider-wrap:focus-within .slider-btn { opacity: 1; }
.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.08);
}
.slider-btn--prev { left: 1.25rem; }
.slider-btn--next { right: 1.25rem; }

/* Hero-position slider – boxed, white background */
.conf-slider-hero {
    background: #fff;
    padding: 33px 0;
    scroll-margin-top: 80px;
}
.admin-bar .conf-slider-hero { scroll-margin-top: 112px; }
@media screen and (max-width: 782px) {
    .admin-bar .conf-slider-hero { scroll-margin-top: 126px; }
}
.conf-slider-hero .conf-slider-outer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.conf-slider-hero__header {
    text-align: center;
}
.conf-slider-footer {
    padding: 1.75rem 0 2.25rem;
    text-align: center;
}

/* Dot indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    margin-top: 1.25rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
    background: var(--accent);
    transform: scale(1.35);
}

/* Slide counter badge */
.slider-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 20px;
}

@media (max-width: 700px) {
    .conf-slide__img,
    .conf-slide__img--placeholder { height: 340px; }
    .conf-slide__content { padding: 1.5rem; }
    .slider-btn { width: 38px; height: 38px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .conf-slide__img,
    .conf-slide__img--placeholder { height: 260px; }
    .conf-slide__meta { gap: .85rem; font-size: .85rem; }
}
