/* Jogajog banner page*/
.page-banner {
    position: relative;
    z-index: 3;
    padding-top: calc(var(--header-h) + 76px);
    padding-bottom: 56px;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60% 90% at 50% 0%, rgba(245, 166, 58, .14) 0%, transparent 68%),
        linear-gradient(180deg, rgba(28, 9, 6, .1), transparent 60%);
}

.page-banner-inner {
    max-width: 780px;
    margin: 0 auto;
    animation: heroFadeUp 1s cubic-bezier(.2, .8, .25, 1) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(45px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', 'Poppins', serif;
    font-size: clamp(15px, 1.8vw, 19px);
    font-style: italic;
    letter-spacing: 3px;
    color: #ffe6c9;
    opacity: .9;
}

.page-title {
    margin-top: 10px;
    font-family: 'Playfair Display', 'Poppins', serif;
    font-weight: 900;
    font-size: clamp(46px, 7vw, 80px);
    line-height: 1.15;
    background: linear-gradient(100deg, #fff 0%, #ffe6c9 30%, var(--orange-2) 60%, var(--red-1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    text-shadow: 0 6px 30px rgba(240, 85, 60, .3);
}

.page-divider {
    width: 84px;
    height: 3px;
    margin: 18px auto 20px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--orange-2), var(--red-1));
    box-shadow: 0 0 14px rgba(245, 136, 59, .55);
}

.page-lead {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 239, 223, .88);
    font-size: clamp(14.5px, 1.6vw, 17.5px);
    line-height: 1.8;
}

.breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 239, 223, .7);
}

.breadcrumb a {
    color: rgba(255, 239, 223, .85);
    text-decoration: none;
    transition: color .25s ease;
}

.breadcrumb a:hover {
    color: #ffd27a;
}

.crumb-sep {
    opacity: .55;
}

.crumb-current {
    color: #f7b24a;
    font-weight: 600;
}

/* Contact Info Cards */
.info-section {
    position: relative;
    z-index: 3;
    padding: 10px 0 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card {
    padding: 30px 26px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 14px 34px rgba(0, 0, 0, .16);
    transition: transform .4s cubic-bezier(.2, .8, .25, 1), border-color .4s ease, box-shadow .4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 166, 58, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 22px 46px rgba(240, 85, 60, .24);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(140deg, var(--orange-2), var(--red-1));
    box-shadow: 0 10px 26px rgba(240, 85, 60, .38);
}

.info-card h3 {
    font-family: 'Playfair Display', 'Poppins', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.info-card p,
.info-card a {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 239, 223, .8);
    text-decoration: none;
}

.info-card a:hover {
    color: #ffd27a;
}

/* Form + Social Section */
.contact-section {
    position: relative;
    z-index: 3;
    padding: 10px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card,
.social-card {
    padding: clamp(26px, 4vw, 40px);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 18px 40px rgba(0, 0, 0, .16);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    color: rgba(255, 239, 223, .85);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .38);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(247, 166, 58, .6);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 4px rgba(247, 166, 58, .14);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #1a0a06;
    background: linear-gradient(120deg, var(--orange-2), #ffd27a);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(247, 166, 58, .32);
    transition: transform .3s cubic-bezier(.2, .8, .25, 1), box-shadow .3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(247, 166, 58, .45);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    display: none;
    align-items: center;
    gap: 10px;
}

.form-status.show {
    display: flex;
    animation: statusFadeIn .4s ease both;
}

@keyframes statusFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    color: #b9f3c9;
    background: rgba(60, 200, 120, .12);
    border: 1px solid rgba(60, 200, 120, .3);
}

.form-status.error {
    color: #ffb4a8;
    background: rgba(240, 85, 60, .12);
    border: 1px solid rgba(240, 85, 60, .3);
}

/* Social Card */
.social-card h3 {
    font-family: 'Playfair Display', 'Poppins', serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.social-card>p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 239, 223, .78);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    font-size: 14px;
    font-weight: 500;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(247, 166, 58, .4);
    transform: translateX(5px);
}

.social-links .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.social-icon.facebook {
    background: linear-gradient(140deg, #4267B2, #2d4373);
}

.social-icon.instagram {
    background: linear-gradient(140deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.youtube {
    background: linear-gradient(140deg, #ff4b4b, #cc1f1f);
}

.social-icon.whatsapp {
    background: linear-gradient(140deg, #25D366, #128C7E);
}

.office-hours {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.office-hours h4 {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #f7b24a;
    margin-bottom: 12px;
}

.office-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 239, 223, .78);
}

.office-hours li span:last-child {
    color: #fff;
    font-weight: 500;
}

/* Standard Responsive Design */
@media (max-width: 980px) {
    nav.main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (max-width: 640px) {
    .page-banner {
        padding-top: calc(var(--header-h) + 50px);
        padding-bottom: 42px;
    }

    .scroll-top-btn {
        bottom: 10px;
        right: 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* User Preference Responsiveness */
@media (prefers-reduced-motion: reduce) {

    .blob,
    header,
    .hamburger span,
    .mobile-menu,
    .mobile-menu nav a,
    .scroll-top-btn.show,
    footer,
    .yellow-ring,
    .logo svg,
    .page-banner-inner,
    .form-status.show {
        animation: none !important;
        transition: none !important;
    }
}