/* ==========================================
   IkoForm Events - Version 1.1
   Responsive Event Grid
   Desktop: 4
   Tablet: 3
   Mobile: 2
========================================== */


/* ==========================================
   Global Box Sizing
========================================== */

.ikoform-event-card,
.ikoform-event-card *,
.ikoform-nearby-card,
.ikoform-nearby-card *,
.ikoform-explore-card,
.ikoform-explore-card *,
.ikoform-explore-events,
.ikoform-explore-events *,
.ikoform-nearby-events,
.ikoform-nearby-events *,
.ikoform-home,
.ikoform-home *,
.ikoform-single-event,
.ikoform-single-event * {
    box-sizing: border-box;
}


/* ==========================================
   Global Buttons
========================================== */

.ikoform-button {
    display: inline-block;
    max-width: 100%;
    padding: 12px 24px;
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: anywhere;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-button:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
}

.ikoform-button:active {
    transform: translateY(0);
}


/* ==========================================
   Reusable Event Card
========================================== */

.ikoform-event-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ikoform-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.ikoform-event-poster-link {
    display: block;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-event-poster-link:hover,
.ikoform-event-poster-link:focus,
.ikoform-event-poster-link:visited {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-event-poster {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ikoform-event-poster img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ikoform-event-card:hover .ikoform-event-poster img {
    transform: scale(1.05);
}

.ikoform-event-content {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    text-align: center;
}

.ikoform-event-title {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.35;
    color: #222;
    overflow-wrap: anywhere;

    /* Remove title line */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-event-title a,
.ikoform-event-title a:hover,
.ikoform-event-title a:focus,
.ikoform-event-title a:visited {
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-event-title::before,
.ikoform-event-title::after {
    content: none !important;
    display: none !important;
}

.ikoform-event-meta {
    width: 100%;
    min-width: 0;
    text-align: left;
    margin-bottom: 20px;
}

.ikoform-event-meta p {
    margin: 10px 0;
    color: #555;
    overflow-wrap: anywhere;
}

.ikoform-event-content .ikoform-button {
    width: 100%;
    margin-top: auto;
}


/* ==========================================
   Main Event Grid
   Desktop: 4 Events Per Row
========================================== */

.ikoform-event-list {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* ==========================================
   Nearby Event Grid
   Desktop: 4 Events Per Row
========================================== */

.ikoform-nearby-grid {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ikoform-nearby-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

.ikoform-nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.ikoform-nearby-card img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.ikoform-nearby-card h3 {
    font-size: 22px;
    line-height: 1.35;
    margin: 20px 20px 10px;
    color: #222;
    overflow-wrap: anywhere;

    /* Remove title underline/line */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-nearby-card h3 a,
.ikoform-nearby-card h3 a:hover,
.ikoform-nearby-card h3 a:focus,
.ikoform-nearby-card h3 a:visited {
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-nearby-card h3::before,
.ikoform-nearby-card h3::after {
    content: none !important;
    display: none !important;
}

.ikoform-nearby-card p {
    margin: 15px 20px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #0d6efd;
    overflow-wrap: anywhere;

    /* Remove distance line */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-nearby-card p a,
.ikoform-nearby-card p a:hover,
.ikoform-nearby-card p a:focus,
.ikoform-nearby-card p a:visited {
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-nearby-card p::before,
.ikoform-nearby-card p::after {
    content: none !important;
    display: none !important;
}

.ikoform-nearby-card .ikoform-button {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin: auto 20px 20px;
}


/* ==========================================
   Explore Event Grid
   Desktop: 4 Events Per Row
========================================== */

.ikoform-explore-grid {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ikoform-explore-card {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ikoform-explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.ikoform-explore-card img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.ikoform-explore-card h3 {
    width: auto;
    min-width: 0;
    margin: 20px;
    font-size: 22px;
    line-height: 1.35;
    color: #222;
    text-align: center;
    overflow-wrap: anywhere;

    /* Remove title underline/line */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-explore-card h3 a,
.ikoform-explore-card h3 a:hover,
.ikoform-explore-card h3 a:focus,
.ikoform-explore-card h3 a:visited {
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-explore-card h3::before,
.ikoform-explore-card h3::after {
    content: none !important;
    display: none !important;
}

.ikoform-explore-card .ikoform-button {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin: auto 20px 20px;
    text-align: center;
}


/* ==========================================
   Explore & Nearby Page Layout
========================================== */

.ikoform-explore-events,
.ikoform-nearby-events {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin: 0 auto;
    padding: 20px;
}

.ikoform-explore-events h2,
.ikoform-nearby-events h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    color: #222;
    overflow-wrap: anywhere;

    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-explore-events h2::before,
.ikoform-explore-events h2::after,
.ikoform-nearby-events h2::before,
.ikoform-nearby-events h2::after {
    content: none !important;
    display: none !important;
}

.ikoform-explore-events > p,
.ikoform-nearby-events > p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}


/* ==========================================
   Explore Events Filters
========================================== */

.ikoform-explore-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    align-items: end;
    margin: 30px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.ikoform-explore-search,
.ikoform-explore-filter {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ikoform-explore-search input,
.ikoform-explore-filter select {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
}

.ikoform-explore-search input:focus,
.ikoform-explore-filter select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.ikoform-explore-filter label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}


/* ==========================================
   Nearby Events Filters
========================================== */

.ikoform-nearby-filters {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.ikoform-nearby-filter {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ikoform-nearby-filter label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ikoform-nearby-filter select {
    min-width: 220px;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
}

.ikoform-nearby-filter select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.ikoform-nearby-action {
    display: flex;
    align-items: flex-end;
}

#ikoform-find-nearby {
    min-height: 46px;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

#ikoform-find-nearby:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}


/* ==========================================
   Single Event
========================================== */

.ikoform-single-event {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.ikoform-single-event img {
    width: 100%;
    height: auto;
    display: block;
}

.ikoform-single-event h2 {
    margin: 20px;
    color: #222;
}

.ikoform-single-event p {
    margin: 15px 20px;
    color: #555;
}

.ikoform-description {
    margin: 20px;
    line-height: 1.8;
    color: #444;
}

.ikoform-category {
    display: inline-block;
    margin: 0 20px;
    padding: 6px 14px;
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


/* ==========================================
   Single Event Details
========================================== */

.ikoform-event-details {
    margin: 25px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}

.ikoform-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #ececec;
    gap: 20px;
}

.ikoform-detail-row:last-child {
    border-bottom: none;
}

.ikoform-detail-row span {
    color: #666;
    font-weight: 600;
}

.ikoform-detail-row strong {
    color: #222;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}


/* ==========================================
   Single Event Action Buttons
========================================== */

.ikoform-action-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 20px;
}

.ikoform-action-buttons .ikoform-button {
    flex: 1;
    text-align: center;
}


/* ==========================================
   Home Page
========================================== */

.ikoform-home {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.ikoform-home-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.ikoform-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ikoform-section-header h2 {
    margin: 0;
    font-size: 32px;
    color: #222;
}

.ikoform-section-link {
    flex-shrink: 0;
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
}

.ikoform-section-link:hover {
    text-decoration: underline;
}


/* ==========================================
   Home Hero
========================================== */

.ikoform-home-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100vw;
    min-height: 520px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 70px;
    padding: 80px max(40px, calc((100vw - 1200px) / 2));
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #ffffff;
}

.ikoform-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .60);
}

.ikoform-home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
}

.ikoform-home-hero h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
}

.ikoform-home-hero p {
    max-width: 700px;
    margin: 0 0 35px;
    color: rgba(255, 255, 255, .92);
    font-size: 20px;
    line-height: 1.7;
}

.ikoform-home-hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.ikoform-home-hero .ikoform-button {
    min-width: 220px;
    background: #ffffff;
    color: #0d6efd;
    border-radius: 50px;
}

.ikoform-home-hero .ikoform-button:hover {
    background: #f3f3f3;
    color: #0b5ed7;
}


/* ==========================================
   Why Choose IkoForm
========================================== */

.ikoform-home-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ikoform-home-benefit {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.ikoform-home-benefit h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #222;
}

.ikoform-home-benefit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ikoform-home-benefit li {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #555;
}


/* ==========================================
   Featured Events Pagination
========================================== */

.ikoform-pagination {
    width: 100%;
    margin: 45px 0 20px;
}

.ikoform-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ikoform-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}

.ikoform-pagination .page-numbers a,
.ikoform-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #ffffff;
    color: #0d6efd;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.ikoform-pagination .page-numbers a:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-2px);
}

.ikoform-pagination .page-numbers .current {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

.ikoform-pagination .page-numbers .dots {
    border-color: transparent;
    background: transparent;
    color: #666;
    min-width: auto;
}


/* ==========================================
   Featured Badge
========================================== */

.ikoform-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: #ffc107;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}


/* ==========================================
   Maintenance Mode
========================================== */

.ikoform-maintenance {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f6f7fb;
    font-family: sans-serif;
}

.ikoform-maintenance-box {
    max-width: 650px;
    padding: 50px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

.ikoform-maintenance-box h1 {
    margin-top: 0;
    color: #222;
}

.ikoform-maintenance-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}


/* ==========================================
   Login Page
========================================== */

.ikoform-login {
    max-width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.ikoform-login-card {
    width: 100%;
    max-width: 480px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.ikoform-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.ikoform-login-header h2 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #222;
}

.ikoform-login-header p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.ikoform-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ==========================================
   Shared Form Fields
========================================== */

.ikoform-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 0;
}

.ikoform-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ikoform-form-field input,
.ikoform-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    font-family: inherit;
}

.ikoform-form-field input {
    min-height: 46px;
}

.ikoform-form-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.ikoform-form-field input:focus,
.ikoform-form-field textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}


/* ==========================================
   Login Button
========================================== */

.ikoform-login-button {
    width: 100%;
    min-height: 48px;
    margin-top: 5px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-login-button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}


/* ==========================================
   Login Footer
========================================== */

.ikoform-login-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.ikoform-login-footer p {
    margin: 0 0 8px;
    color: #666;
}

.ikoform-login-footer a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.ikoform-login-footer a:hover {
    text-decoration: underline;
}


/* ==========================================
   Register Page
========================================== */

.ikoform-register {
    max-width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.ikoform-register-card {
    width: 100%;
    max-width: 520px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.ikoform-register-header {
    text-align: center;
    margin-bottom: 30px;
}

.ikoform-register-header h2 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #222;
}

.ikoform-register-header p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.ikoform-registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ikoform-optional {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}

.ikoform-password-requirements {
    margin: 0;
    color: #777;
    font-size: 13px;
}

ul.ikoform-password-requirements {
    padding-left: 20px;
}

ul.ikoform-password-requirements li {
    margin-bottom: 4px;
}


/* ==========================================
   Register Button
========================================== */

.ikoform-register-button {
    width: 100%;
    min-height: 48px;
    margin-top: 5px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-register-button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}


/* ==========================================
   Register Footer
========================================== */

.ikoform-register-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.ikoform-register-footer p {
    margin: 0 0 8px;
    color: #666;
}

.ikoform-register-footer a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.ikoform-register-footer a:hover {
    text-decoration: underline;
}


/* ==========================================
   Submit Event Page
========================================== */

.ikoform-submit-event {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 20px;
}

.ikoform-submit-event > h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 32px;
    color: #222;
}

.ikoform-submit-event > h2::after {
    content: "Share your event with the IkoForm community.";
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

.ikoform-submit-event form {
    margin-top: 35px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.ikoform-submit-event form > p {
    margin: 0 0 22px;
}

.ikoform-submit-event form label {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ikoform-submit-event form input[type="text"],
.ikoform-submit-event form input[type="date"],
.ikoform-submit-event form input[type="time"],
.ikoform-submit-event form input[type="file"],
.ikoform-submit-event form select,
.ikoform-submit-event form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    font-size: 16px;
    color: #222;
}

.ikoform-submit-event form input[type="text"],
.ikoform-submit-event form input[type="date"],
.ikoform-submit-event form input[type="time"],
.ikoform-submit-event form select {
    min-height: 46px;
}

.ikoform-submit-event form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.ikoform-submit-event form input:focus,
.ikoform-submit-event form select:focus,
.ikoform-submit-event form textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.ikoform-submit-event form input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.ikoform-submit-event form small {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 13px;
}

.ikoform-submit-event #ikoform-get-location {
    display: inline-block;
    min-height: 46px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-submit-event #ikoform-get-location:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.ikoform-submit-event #ikoform-location-status {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.ikoform-submit-event form > p:last-child {
    margin-top: 30px;
    margin-bottom: 0;
}

.ikoform-submit-event form > p:last-child button {
    width: 100%;
    min-height: 50px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-submit-event form > p:last-child button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}


/* ==========================================
   Logout Button
========================================== */

.ikoform-logout-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-logout-button:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
}

.ikoform-logout-button:active {
    transform: translateY(0);
}


/* ==========================================
   Email Verification
========================================== */

.ikoform-success-message,
.ikoform-error-message {
    margin-bottom: 25px;
    padding: 16px 20px;
    border-radius: 8px;
    line-height: 1.6;
}

.ikoform-success-message {
    background: #eef9f0;
    border: 1px solid #b7dfbd;
    color: #245b2a;
}

.ikoform-error-message {
    background: #fff1f1;
    border: 1px solid #e0b4b4;
    color: #8a1f1f;
}

.ikoform-verification-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.ikoform-verification-section h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}

.ikoform-verification-section p {
    color: #666;
    line-height: 1.6;
}

.ikoform-verification-section .ikoform-button {
    width: 100%;
    margin-top: 5px;
    text-align: center;
}


/* ==========================================
   User Profile
========================================== */

.ikoform-user-profile {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.ikoform-user-profile h2 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #222;
}

.ikoform-profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ikoform-profile-avatar {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.ikoform-avatar,
.ikoform-avatar-placeholder {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
}

.ikoform-avatar-placeholder {
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.ikoform-profile-avatar label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.ikoform-profile-avatar input[type="file"] {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 8px;
}

.ikoform-profile-avatar small {
    color: #777;
}

.ikoform-profile-fields {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ikoform-profile-fields p {
    margin: 0 0 15px;
}

.ikoform-profile-fields label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ikoform-profile-fields input {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
}

.ikoform-profile-fields input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.ikoform-profile-fields input[readonly] {
    background: #f5f5f5;
    color: #777;
    cursor: not-allowed;
}

.ikoform-profile-fields small {
    display: block;
    margin-top: 6px;
    color: #777;
}


/* ==========================================
   Messages Page
========================================== */

.ikoform-messages {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ikoform-page-header {
    margin-bottom: 35px;
}

.ikoform-page-header h2 {
    margin: 0 0 10px;
}

.ikoform-page-header p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.ikoform-message-section {
    margin-bottom: 40px;
}

.ikoform-message-section-header {
    margin-bottom: 20px;
}

.ikoform-message-section-header h3 {
    margin: 0 0 6px;
}

.ikoform-message-section-header p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.ikoform-message-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.ikoform-message-form-actions {
    margin-top: 5px;
}

.ikoform-message-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ikoform-message-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.ikoform-message-card-unread {
    border-left: 4px solid #0d6efd;
}

.ikoform-message-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.ikoform-message-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ikoform-message-card-title h4 {
    margin: 0;
    font-size: 18px;
}

.ikoform-message-date {
    color: #777;
    font-size: 13px;
    white-space: nowrap;
}

.ikoform-message-unread-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 20px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.ikoform-message-bubble {
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 15px;
}

.ikoform-message-user-bubble {
    background: #f5f7fa;
    border: 1px solid #e6e9ed;
}

.ikoform-message-admin-bubble {
    background: #f8fbff;
    border: 1px solid #dcecff;
    margin-left: 35px;
}

.ikoform-message-bubble-header {
    margin-bottom: 12px;
}

.ikoform-message-sender {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ikoform-message-sender > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ikoform-message-sender strong {
    font-size: 14px;
}

.ikoform-message-sender span {
    font-size: 12px;
    color: #777;
}

.ikoform-message-avatar,
.ikoform-admin-message-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.ikoform-message-admin-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef3f8;
    font-size: 18px;
}

.ikoform-message-bubble-content {
    color: #333;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ikoform-message-waiting {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 0 35px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #fafafa;
    color: #777;
    font-size: 14px;
}

.ikoform-message-waiting p {
    margin: 0;
}

.ikoform-empty-state {
    text-align: center;
    padding: 50px 25px;
    border: 1px dashed #d8dce2;
    border-radius: 16px;
    background: #fafafa;
}

.ikoform-empty-state-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.ikoform-empty-state h4 {
    margin: 0 0 8px;
}

.ikoform-empty-state p {
    margin: 0;
    color: #777;
}


/* ==========================================
   Header
========================================== */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99999;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* ==========================================
   Explore Events Pagination
========================================== */

.ikoform-explore-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0 20px;
}

.ikoform-pagination-button {
    display: inline-block;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.ikoform-pagination-button:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
}

.ikoform-pagination-info {
    color: #555;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}


/* ==========================================
   IkoForm Site Footer
========================================== */

.ikoform-site-footer {
    width: 100%;
    margin-top: 80px;
    padding: 70px 30px 25px;
    background: #000000;
    color: #ffffff;
}

.ikoform-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 50px;
}

.ikoform-footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.ikoform-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ikoform-footer-column li {
    margin: 0 0 12px;
}

.ikoform-footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition:
        color .3s ease,
        padding-left .3s ease;
}

.ikoform-footer-column a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.ikoform-footer-social {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.ikoform-social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: opacity .3s ease;
}

.ikoform-social-link:hover {
    color: #ffffff;
    opacity: .7;
}

.ikoform-footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.ikoform-footer-bottom p {
    margin: 0;
    color: #888888;
    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   Contact Email
========================================== */

.ikoform-contact-email {
    text-align: center;
    margin: 30px auto;
}

.ikoform-contact-email h3 {
    margin-bottom: 10px;
}

.ikoform-contact-email p {
    margin: 0;
}

.ikoform-contact-email a {
    font-weight: 600;
}


/* ==========================================
   About Us Page
========================================== */

.ikoform-about-page {
    width: 100%;
}

.ikoform-about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 70px;
    padding: 80px 40px;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.ikoform-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .60);
}

.ikoform-about-hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.ikoform-about-hero h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2;
}

.ikoform-about-hero p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 21px;
    line-height: 1.7;
}

.ikoform-about-section {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 0 30px;
    text-align: center;
}

.ikoform-about-content h2 {
    margin: 0 0 25px;
    font-size: 32px;
    line-height: 1.3;
}

.ikoform-about-content p {
    margin: 0 auto 20px;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
}

.ikoform-about-image-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 30px;
}

.ikoform-about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.ikoform-about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ikoform-goals-values {
    margin-bottom: 80px;
}


/* ==========================================
   Our Services Page
========================================== */

.ikoform-services-page {
    width: 100%;
}

.ikoform-services-section {
    max-width: 1000px;
    margin: 0 auto 70px;
    padding: 0 30px;
}

.ikoform-services-content {
    text-align: center;
}

.ikoform-services-content h2 {
    margin: 0 0 35px;
    font-size: 32px;
    line-height: 1.3;
}

.ikoform-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.ikoform-service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.ikoform-service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    font-size: 28px;
    background: #ffffff;
    border-radius: 50%;
}

.ikoform-service-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.ikoform-featured-services {
    margin-bottom: 90px;
}


/* ==========================================
   Tablet
   601px - 900px
   3 Events Per Row
========================================== */

@media (max-width: 900px) {

    .ikoform-event-list,
    .ikoform-nearby-grid,
    .ikoform-explore-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ikoform-explore-filters {
        grid-template-columns: 1fr 1fr;
    }

    .ikoform-explore-search {
        grid-column: 1 / -1;
    }

    .ikoform-footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

}


/* ==========================================
   Mobile
   600px and below
   2 Events Per Row
========================================== */

@media (max-width: 600px) {

    .ikoform-explore-events,
    .ikoform-nearby-events {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
        overflow-x: hidden;
    }

    .ikoform-event-list,
    .ikoform-nearby-grid,
    .ikoform-explore-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ikoform-event-card,
    .ikoform-nearby-card,
    .ikoform-explore-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .ikoform-event-content,
    .ikoform-explore-card,
    .ikoform-nearby-card {
        min-width: 0;
    }

    .ikoform-event-poster img,
    .ikoform-nearby-card img,
    .ikoform-explore-card img {
        width: 100%;
        max-width: 100%;
        height: 180px;
    }

    .ikoform-event-content {
        padding: 12px;
    }

    .ikoform-event-title,
    .ikoform-explore-card h3,
    .ikoform-nearby-card h3 {
        font-size: 16px;
        line-height: 1.35;
    }

    .ikoform-event-title {
        margin-bottom: 12px;
    }

    .ikoform-event-meta {
        margin-bottom: 12px;
    }

    .ikoform-event-meta p {
        margin: 6px 0;
        font-size: 13px;
    }

    .ikoform-event-content .ikoform-button {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 8px;
        font-size: 13px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .ikoform-explore-card h3 {
        margin: 12px;
    }

    .ikoform-explore-card .ikoform-button {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 12px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .ikoform-nearby-card h3 {
        margin: 12px 12px 8px;
    }

    .ikoform-nearby-card p {
        margin: 8px 12px 12px;
        font-size: 14px;
    }

    .ikoform-nearby-card .ikoform-button {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 12px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .ikoform-explore-filters {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
        padding: 16px;
        margin: 25px 0;
    }

    .ikoform-explore-search {
        grid-column: auto;
    }

    .ikoform-explore-search,
    .ikoform-explore-filter {
        width: 100%;
        min-width: 0;
    }

    .ikoform-nearby-filters {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        margin: 25px 0;
    }

    .ikoform-nearby-filter {
        width: 100%;
        min-width: 0;
    }

    .ikoform-nearby-filter select {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .ikoform-nearby-action {
        display: block;
        width: 100%;
    }

    #ikoform-find-nearby {
        width: 100%;
        max-width: 100%;
    }

    .ikoform-button {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .ikoform-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .ikoform-detail-row strong {
        text-align: left;
    }

    .ikoform-action-buttons {
        flex-direction: column;
    }

    .ikoform-home-section {
        margin-bottom: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .ikoform-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ikoform-home-hero {
        width: 100%;
        min-height: 480px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
        padding: 50px 25px;
    }

    .ikoform-home-hero h1 {
        font-size: 32px;
    }

    .ikoform-home-hero p {
        font-size: 18px;
    }

    .ikoform-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ikoform-home-hero .ikoform-button {
        width: 100%;
        min-width: 0;
    }

    .ikoform-home-benefits {
        grid-template-columns: 1fr;
    }

    .ikoform-pagination {
        margin-top: 35px;
    }

    .ikoform-pagination .page-numbers {
        gap: 7px;
    }

    .ikoform-pagination .page-numbers a,
    .ikoform-pagination .page-numbers span {
        min-width: 40px;
        min-height: 40px;
        padding: 7px 11px;
        font-size: 14px;
    }

    .ikoform-login {
        padding: 30px 15px;
    }

    .ikoform-login-card {
        padding: 30px 20px;
    }

    .ikoform-register {
        padding: 30px 15px;
    }

    .ikoform-register-card {
        padding: 30px 20px;
    }

    .ikoform-submit-event {
        padding: 30px 15px;
    }

    .ikoform-submit-event form {
        padding: 25px 20px;
    }

    .ikoform-submit-event > h2 {
        font-size: 28px;
    }

    .ikoform-submit-event form > p:last-child button {
        width: 100%;
    }

    .ikoform-user-profile {
        padding: 25px 20px;
    }

    .ikoform-avatar,
    .ikoform-avatar-placeholder {
        width: 100px;
        height: 100px;
    }

    .ikoform-message-form {
        padding: 20px;
        border-radius: 12px;
    }

    .ikoform-message-card {
        padding: 18px;
        border-radius: 12px;
    }

    .ikoform-message-card-header {
        flex-direction: column;
        gap: 8px;
    }

    .ikoform-message-date {
        white-space: normal;
    }

    .ikoform-message-admin-bubble {
        margin-left: 12px;
    }

    .ikoform-message-waiting {
        margin-left: 12px;
    }

    .ikoform-site-footer {
        margin-top: 60px;
        padding: 50px 25px 20px;
    }

    .ikoform-footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ikoform-footer-column h3 {
        margin-bottom: 15px;
    }

    .ikoform-footer-social {
        margin-top: 40px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .ikoform-about-hero {
        min-height: 350px;
        padding: 60px 25px;
        margin-bottom: 50px;
    }

    .ikoform-about-hero h1 {
        font-size: 36px;
    }

    .ikoform-about-hero p {
        font-size: 18px;
    }

    .ikoform-about-section {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .ikoform-about-content h2 {
        font-size: 28px;
    }

    .ikoform-about-content p {
        font-size: 17px;
        line-height: 1.7;
    }

    .ikoform-about-image-section {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .ikoform-services-section {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .ikoform-services-content h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .ikoform-services-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ikoform-service-item {
        padding: 20px;
    }

    .ikoform-service-item p {
        font-size: 16px;
    }

    .ikoform-explore-pagination {
        gap: 10px;
        margin-top: 30px;
    }

    .ikoform-pagination-button {
        padding: 11px 16px;
        font-size: 14px;
    }

    .ikoform-pagination-info {
        font-size: 14px;
    }

}


/* ==========================================
   Small Phones
   480px and below
   Still 2 Events Per Row
========================================== */

@media (max-width: 480px) {

    .ikoform-explore-events,
    .ikoform-nearby-events {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ikoform-home-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ikoform-home-hero {
        min-height: 440px;
        padding: 45px 20px;
    }

    .ikoform-home-hero h1 {
        font-size: 28px;
    }

    .ikoform-home-hero p {
        font-size: 17px;
    }

    .ikoform-event-list,
    .ikoform-nearby-grid,
    .ikoform-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ikoform-event-poster img,
    .ikoform-nearby-card img,
    .ikoform-explore-card img {
        height: 150px;
    }

    .ikoform-event-content {
        padding: 10px;
    }

    .ikoform-event-title,
    .ikoform-explore-card h3,
    .ikoform-nearby-card h3 {
        font-size: 14px;
    }

    .ikoform-event-meta p {
        font-size: 12px;
    }

    .ikoform-event-content .ikoform-button,
    .ikoform-explore-card .ikoform-button,
    .ikoform-nearby-card .ikoform-button {
        font-size: 12px;
        padding: 9px 5px;
    }

    .ikoform-pagination .page-numbers {
        gap: 5px;
    }

    .ikoform-pagination .page-numbers a,
    .ikoform-pagination .page-numbers span {
        min-width: 38px;
        min-height: 38px;
        padding: 6px 9px;
        font-size: 13px;
    }

    .ikoform-message-form {
        padding: 16px;
    }

    .ikoform-message-card {
        padding: 15px;
    }

    .ikoform-message-bubble {
        padding: 14px;
    }

    .ikoform-message-admin-bubble,
    .ikoform-message-waiting {
        margin-left: 0;
    }

    .ikoform-message-card-title h4 {
        font-size: 16px;
    }

}


/* ==========================================
   Event Card Links
========================================== */

.ikoform-event-card-link {
    display: block;
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
    cursor: pointer;
}

.ikoform-event-card-link:hover,
.ikoform-event-card-link:focus,
.ikoform-event-card-link:visited {
    color: inherit;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}


/* ==========================================
   Force Remove Theme Underlines From
   Explore, Nearby, Event Titles and Distance
========================================== */

.ikoform-event-card-link *,
.ikoform-nearby-card h3,
.ikoform-nearby-card h3 *,
.ikoform-explore-card h3,
.ikoform-explore-card h3 *,
.ikoform-event-title,
.ikoform-event-title *,
.ikoform-nearby-card p,
.ikoform-nearby-card p * {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.ikoform-nearby-card h3::before,
.ikoform-nearby-card h3::after,
.ikoform-explore-card h3::before,
.ikoform-explore-card h3::after,
.ikoform-event-title::before,
.ikoform-event-title::after,
.ikoform-nearby-card p::before,
.ikoform-nearby-card p::after {
    content: none !important;
    display: none !important;
}
/* ==========================================
   FINAL UNIFIED EVENT CARD DESIGN
   Featured, Explore and Nearby Events
========================================== */

/* Remove all unwanted link underlines inside cards */
.ikoform-event-card a,
.ikoform-nearby-card a,
.ikoform-explore-card a,
.ikoform-event-card a:hover,
.ikoform-nearby-card a:hover,
.ikoform-explore-card a:hover,
.ikoform-event-card a:focus,
.ikoform-nearby-card a:focus,
.ikoform-explore-card a:focus,
.ikoform-event-card a:visited,
.ikoform-nearby-card a:visited,
.ikoform-explore-card a:visited {
    color: inherit;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}


/* ==========================================
   Main Unified Card
========================================== */

.ikoform-event-card,
.ikoform-nearby-card,
.ikoform-explore-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 12px;
    overflow: hidden;

    /* Strong unified shadow */
    box-shadow:
        0 10px 28px rgba(0, 0, 0, .12),
        0 2px 8px rgba(0, 0, 0, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* ==========================================
   Unified Hover Effect
========================================== */

.ikoform-event-card:hover,
.ikoform-nearby-card:hover,
.ikoform-explore-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18),
        0 6px 15px rgba(0, 0, 0, .10);
}


/* ==========================================
   Card Images
========================================== */

.ikoform-event-card img,
.ikoform-nearby-card img,
.ikoform-explore-card img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}


/* Featured event poster zoom */

.ikoform-event-card:hover .ikoform-event-poster img {
    transform: scale(1.05);
}


/* ==========================================
   Unified Poster Containers
========================================== */

.ikoform-event-poster,
.ikoform-nearby-card .ikoform-event-poster,
.ikoform-explore-card .ikoform-event-poster {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* ==========================================
   Unified Card Content
========================================== */

.ikoform-event-card .ikoform-event-content,
.ikoform-nearby-card .ikoform-event-content,
.ikoform-explore-card .ikoform-event-content {
    width: 100%;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}


/* ==========================================
   Unified Titles
========================================== */

.ikoform-event-title,
.ikoform-nearby-card h3,
.ikoform-explore-card h3 {
    width: 100%;
    min-width: 0;
    margin: 0 0 15px;
    padding: 0;
    font-size: 22px;
    line-height: 1.35;
    color: #222222;
    text-align: center;
    overflow-wrap: anywhere;

    text-decoration: none !important;
    text-decoration-line: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}


/* Remove theme-generated title lines */

.ikoform-event-title::before,
.ikoform-event-title::after,
.ikoform-nearby-card h3::before,
.ikoform-nearby-card h3::after,
.ikoform-explore-card h3::before,
.ikoform-explore-card h3::after {
    content: none !important;
    display: none !important;
}


/* ==========================================
   Unified Nearby Distance
========================================== */

.ikoform-nearby-card p {
    margin: 0 20px 20px;
    padding: 0;
    font-size: 17px;
    font-weight: 600;
    color: #0d6efd;
    text-align: center;
    overflow-wrap: anywhere;

    text-decoration: none !important;
    text-decoration-line: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}


/* Remove theme-generated distance lines */

.ikoform-nearby-card p::before,
.ikoform-nearby-card p::after {
    content: none !important;
    display: none !important;
}


/* ==========================================
   Unified Buttons
========================================== */

.ikoform-event-card .ikoform-button,
.ikoform-nearby-card .ikoform-button,
.ikoform-explore-card .ikoform-button {
    margin-top: auto;
}


/* ==========================================
   Mobile Card Shadow
========================================== */

@media (max-width: 600px) {

    .ikoform-event-card,
    .ikoform-nearby-card,
    .ikoform-explore-card {
        box-shadow:
            0 7px 20px rgba(0, 0, 0, .12),
            0 2px 6px rgba(0, 0, 0, .05);
    }

}


@media (max-width: 480px) {

    .ikoform-event-card,
    .ikoform-nearby-card,
    .ikoform-explore-card {
        box-shadow:
            0 6px 18px rgba(0, 0, 0, .12),
            0 2px 5px rgba(0, 0, 0, .05);
    }

}

/* ==========================================
   ABSOLUTE FINAL EVENT CARD OVERRIDE
   Featured, Explore and Nearby Events
   Keep the poster and title inside one card
========================================== */

.ikoform-event-list .ikoform-event-card,
.ikoform-nearby-grid .ikoform-nearby-card,
.ikoform-explore-grid .ikoform-explore-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .14),
        0 4px 12px rgba(0, 0, 0, .08) !important;
}

/* Make the full card lift and keep the same shadow style */
.ikoform-event-list .ikoform-event-card:hover,
.ikoform-nearby-grid .ikoform-nearby-card:hover,
.ikoform-explore-grid .ikoform-explore-card:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18),
        0 6px 16px rgba(0, 0, 0, .10) !important;
}

/* The poster must touch the title section with no separate border or gap */
.ikoform-event-list .ikoform-event-card > img,
.ikoform-event-list .ikoform-event-card .ikoform-event-poster,
.ikoform-nearby-grid .ikoform-nearby-card > img,
.ikoform-nearby-grid .ikoform-nearby-card .ikoform-event-poster,
.ikoform-explore-grid .ikoform-explore-card > img,
.ikoform-explore-grid .ikoform-explore-card .ikoform-event-poster {
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

/* Same clean white title/content area */
.ikoform-event-list .ikoform-event-card .ikoform-event-content,
.ikoform-nearby-grid .ikoform-nearby-card .ikoform-event-content,
.ikoform-explore-grid .ikoform-explore-card .ikoform-event-content {
    background: #ffffff !important;
    border: none !important;
}

/* Direct title layouts used by Explore and Nearby */
.ikoform-explore-grid .ikoform-explore-card > h3,
.ikoform-nearby-grid .ikoform-nearby-card > h3 {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Featured title keeps the same card appearance */
.ikoform-event-list .ikoform-event-card .ikoform-event-title {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Nearby distance remains inside the same white card */
.ikoform-nearby-grid .ikoform-nearby-card > p {
    margin: 0 !important;
    padding: 0 20px 20px !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 600px) {
    .ikoform-event-list .ikoform-event-card,
    .ikoform-nearby-grid .ikoform-nearby-card,
    .ikoform-explore-grid .ikoform-explore-card {
        box-shadow:
            0 9px 24px rgba(0, 0, 0, .14),
            0 3px 9px rgba(0, 0, 0, .07) !important;
    }

    .ikoform-explore-grid .ikoform-explore-card > h3,
    .ikoform-nearby-grid .ikoform-nearby-card > h3 {
        padding: 12px !important;
    }

    .ikoform-nearby-grid .ikoform-nearby-card > p {
        padding: 0 12px 12px !important;
    }
}

@media (max-width: 480px) {
    .ikoform-event-list .ikoform-event-card,
    .ikoform-nearby-grid .ikoform-nearby-card,
    .ikoform-explore-grid .ikoform-explore-card {
        box-shadow:
            0 7px 20px rgba(0, 0, 0, .13),
            0 2px 7px rgba(0, 0, 0, .06) !important;
    }
}


/* =========================================================
   UNIFIED EVENT CARDS
   Featured, Explore and Nearby use the same single-card look
   ========================================================= */

.featured-event-card,
.ikoform-featured-event-card,
.ikoform-explore-event-card,
.ikoform-nearby-event-card,
.explore-event-card,
.nearby-event-card {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-event-card:hover,
.ikoform-featured-event-card:hover,
.ikoform-explore-event-card:hover,
.ikoform-nearby-event-card:hover,
.explore-event-card:hover,
.nearby-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.featured-event-card img,
.featured-event-card .event-poster,
.ikoform-featured-event-card img,
.ikoform-featured-event-card .event-poster,
.ikoform-explore-event-card img,
.ikoform-explore-event-card .event-poster,
.ikoform-nearby-event-card img,
.ikoform-nearby-event-card .event-poster,
.explore-event-card img,
.explore-event-card .event-poster,
.nearby-event-card img,
.nearby-event-card .event-poster {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.featured-event-card .event-content,
.featured-event-card .event-title,
.ikoform-featured-event-card .event-content,
.ikoform-featured-event-card .event-title,
.ikoform-explore-event-card .event-content,
.ikoform-explore-event-card .event-title,
.ikoform-nearby-event-card .event-content,
.ikoform-nearby-event-card .event-title,
.explore-event-card .event-content,
.explore-event-card .event-title,
.nearby-event-card .event-content,
.nearby-event-card .event-title {
    border: 0;
    box-shadow: none;
}

.ikoform-explore-event-card .event-title,
.ikoform-nearby-event-card .event-title,
.explore-event-card .event-title,
.nearby-event-card .event-title {
    margin: 0;
    padding: 18px 20px 20px;
    background: #ffffff;
}
