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

:root {
    --primary: #96222a;
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: #d15a60;
    --secondary: hsl(280, 65%, 35%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --secondary-glow: hsl(280, 70%, 55%);
    --accent: hsl(35.63deg 50% 87.45%);
    --accent-foreground: hsl(20, 20%, 15%);
    --accent-glow: hsl(45, 100%, 70%);
    --background: hsl(28, 100%, 98%);
    --foreground: hsl(20, 20%, 15%);
    --muted: hsl(28, 40%, 95%);
    --muted-foreground: hsl(20, 15%, 45%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(20, 20%, 15%);
    --border: hsl(28, 30%, 90%);
}

.bg-primary {
    background-color: #96222a !important;
}

.dropdown-menu {
    background-color: #96222a !important;
}

.live-darshan{
    color: #96222a !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.jtcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
/* header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-foreground);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin: 0;
}

nav {
    display: flex;
    gap: 0.5rem;
}

nav a {
    padding: 0.5rem 1rem;
    color: hsla(0, 0%, 100%, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--primary-foreground);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    cursor: pointer;
} */

/* Hero Section */
.jthero {
    background: #f0e4cb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jthero-bg {
    position: absolute;
    inset: 0;
    background-image: url('http://jetalpurdarshan.com/wp-content/uploads/2025/10/20251005_081839-scaled.jpg');
    background-size: cover;
    background-position: center;
}

.jthero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(25, 95%, 53%, 0.9), hsla(280, 65%, 35%, 0.8), hsla(25, 95%, 53%, 0.9));
}

.jthero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 0;
    animation: fadeUp 1s ease;
}

.jthero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(45, 100%, 51%, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid hsla(45, 100%, 51%, 0.3);
    margin-bottom: 1.5rem;
}

.jthero-badge span {
    color: var(--primary-foreground);
    font-weight: 500;
}

.jthero h2 {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.jthero-gradient-text {
    background: linear-gradient(to right, var(--accent), var(--accent-glow), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jthero p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: hsla(0, 0%, 100%, 0.9);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.jthero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 24px;
}

.jtbtn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.jtbtn-primary {
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground) !important;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.jtbtn-primary:hover {
    background: hsla(0, 0%, 100%, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsla(var(--primary-glow), 0.3);
}

.jtbtn-outline {
    background: transparent;
    color: var(--primary-foreground) !important;
    border: 2px solid var(--primary-foreground) !important;
}

.jtbtn-outline:hover {
    background: var(--primary-foreground) !important;
    color: var(--primary) !important;
}

.jtbtn-outline1 {
    background: var(--primary-foreground) !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary-foreground) !important;
}

.jtbtn-outline1:hover {
   transform: translateY(-2px);
}

.jtscroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

/* Countdown Section */
.jtslider {
    padding: 3em 0 0 0;
    background: linear-gradient(to bottom, var(--muted), var(--background));
}
.jtcountdown {
    padding: 5rem 0;
    background: var(--background);
}

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

.jtsection-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.jtsection-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-glow));
    margin: 0 auto;
    border-radius: 9999px;
}

.jtcountdown-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.jtcountdown-item {
    background: linear-gradient(145deg, var(--card), hsl(28, 80%, 97%));
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 8px 32px hsl(356deg 52% 45% / 20%);
    border: 1px solid hsl(356deg 52% 45% / 10%);
    transition: transform 0.3s;
}

.jtcountdown-item:hover {
    transform: scale(1.05);
}

.jtcountdown-value {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.jtcountdown-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* About Section */
.jtabout {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--muted), var(--background));
}

.jtabout-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.jtabout-text {
    animation: fadeUp 1s ease;
}

.jtabout-text p {
    font-size: 1.125rem;
    color: hsla(20, 20%, 15%, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.jtabout-image {
    position: relative;
    animation: fadeUp 1s ease 0.2s backwards;
}

.jtabout-image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    opacity: 0.2;
    filter: blur(2rem);
    border-radius: 1.5rem;
}

.jtabout-image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 64px rgba(0,0,0,0.15);
    border: 4px solid hsl(36deg 50% 87% / 30%)
}

.jtfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.jtfeature-card {
    background: linear-gradient(145deg, var(--card), hsl(28, 80%, 97%));
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px hsla(25, 95%, 53%, 0.15);
    border: 1px solid hsla(45, 100%, 51%, 0.1);
    transition: all 0.3s;
}

.jtfeature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px hsla(25, 95%, 53%, 0.2);
}

.jtfeature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 40px hsla(var(--primary-glow), 0.3);
}

.jtfeature-card h3 {
    font-size: 1.50rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.jtfeature-card p {
    color: var(--muted-foreground);
}

/* Schedule Section */
.jtschedule {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--muted), var(--background));
}

.jtschedule-list {
    /*max-width: 64rem;*/
    margin: 0 auto;
}

.jtschedule-item {
    background: var(--card);
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px hsl(356deg 52% 45% / 15%);
    border-left: 4px solid var(--primary);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    width : 48% !important;
}

.jtschedule-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px hsl(356deg 52% 45% / 20%);
}

.jtschedule-item-content {
    display: flex;
    flex-wrap: wrap;
}

.jtschedule-date {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.jtschedule-date-day {
    font-size: 2.5rem;
    font-weight: bold;
}

.jtschedule-date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.jtschedule-details {
    flex: 1;
    padding: 2rem;
}

.jtschedule-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.jtschedule-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.jtschedule-details p {
    color: hsla(20, 20%, 15%, 0.7);
}

/* Highlights Section */
.jthighlights {
    padding: 6rem 0;
    background: var(--background);
}

.jthighlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.jthighlight-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 16px hsla(25, 95%, 53%, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.jthighlight-item:hover {
    box-shadow: 0 8px 32px hsla(25, 95%, 53%, 0.2);
}

.jthighlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.jthighlight-item:hover img {
    transform: scale(1.1);
}

.jthighlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(25, 95%, 53%, 0.9), hsla(280, 65%, 35%, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jthighlight-item:hover .jthighlight-overlay {
    opacity: 1;
}

.jtinstagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #e1306c, #833ab4);
    color: white !important;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin-top: 3rem;
    transition: all 0.3s;
}

.jtinstagram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

/* Live Section */
.jtlive {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
}

.jtlive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(36deg 50% 87% / 30%);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(36deg 50% 87% / 30%);
    margin-bottom: 1.5rem;
}

.jtlive-video {
    max-width: 80rem;
    margin: 0 auto;
}

.jtvideo-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(0,0,0,0.3);
    border: 4px solid hsla(45, 100%, 51%, 0.3);
}

.jtvideo-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.jtlive-text {
    text-align: center;
    margin-top: 2.5rem;
}

.jtlive-text p {
    font-size: 1.30rem !important;
    color: hsla(0, 0%, 100%, 0.9);
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

/* Support Section */
.jtsupport {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--background), var(--muted));
}

.jtsupport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.jtsupport-card {
    background: var(--card);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px hsl(356deg 52% 45% / 20%);
    border: 1px solid hsl(356deg 52% 45% / 10%);
    overflow: hidden;
    transition: all 0.3s;
}

.jtsupport-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 64px hsl(356deg 52% 45% / 30%);
}

.jtsupport-card-accent {
    height: 8px;
}

.jtsupport-card-content {
    padding: 2rem;
    text-align: center;
}

.jtsupport-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.jtsupport-card:hover .jtsupport-icon {
    transform: scale(1.1);
}

.jtsupport-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.jtsupport-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}
.jtsupport-icon svg {
    margin: 15px 0 0 15px;
}

/* Visit Section */
.jtvisit {
    /*padding: 6rem 0;*/
    background: var(--muted);
}

.jtvisit-grid {
    display: flex;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.jtmap-container {
    position: relative;
    width: 50%;
}

.jtcontact-container{
    width: 50%;
}

.jtmap-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    opacity: 0.2;
    filter: blur(2rem);
    border-radius: 1.5rem;
}

.jtmap-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(0,0,0,0.15);
    border: 4px solid hsla(45, 100%, 51%, 0.3);
    height: 500px;
}

.jtmap-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.jtcontact-info {
    background: linear-gradient(145deg, var(--card), hsl(28, 80%, 97%));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px hsla(25, 95%, 53%, 0.2);
    border: 1px solid hsla(45, 100%, 51%, 0.1);
}

.jtcontact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.jtcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jtcontact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px hsla(25, 95%, 53%, 0.15);
}

.jtcontact-details .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.jtcontact-details .value {
    color: var(--foreground);
    font-weight: 500;
}

/* .jtnote-box {
    background: hsla(45, 100%, 51%, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid hsla(45, 100%, 51%, 0.2);
    margin-top: 2rem;
}

.jtnote-box p {
    font-size: 0.875rem;
    color: hsla(20, 20%, 15%, 0.7);
} */

/* Footer */
footer {
    margin-top: 0;
}
/* footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-about p {
    color: hsla(0, 0%, 100%, 0.8);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(45, 100%, 51%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-foreground);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    text-align: center;
}

.footer-copyright p {
    color: hsla(0, 0%, 100%, 0.7);
} */

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (min-width: 768px) {
    .about-grid,
    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 640px) {
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .schedule-date {
        width: 100%;
    }

    .jtvisit-grid {
        display: grid;
        justify-content: center;
        justify-items: center;
    }

    .jtabout-grid{
        display: grid;
    }

    .jtcontact-container, .jtmap-container{
        width: 95%;
    }
}
    

.page-title-header{
    display: none;
}

.wpforms-field-container .wpforms-field input[type="text"],
.wpforms-field-container .wpforms-field input[type="email"],
.wpforms-field-container .wpforms-field input[type="tel"],
.wpforms-field-container .wpforms-field input[type="number"],
.wpforms-field-container .wpforms-field select,
.wpforms-field-container .wpforms-field textarea {
    border-radius: 10px !important;
    box-shadow: 0 8px 32px hsla(25, 95%, 53%, 0.2) !important;
    border: 1px solid hsla(45, 100%, 51%, 0.3) !important;
    height: 50px !important;
    width: 100% !important;
    background: var( --card );
    visibility: visible !important;
}

button#wpforms-submit-1075{
	background-color: transparent !important;
	border-radius: 10px  !important;
	width: 100%;
}

button#wpforms-submit-1075 {
    background: transparent;
    color: var(--primary-foreground) !important;
    border: 2px solid var(--primary-foreground) !important;
}

button#wpforms-submit-1075:hover {
    background-color: var(--primary-foreground) !important;
    color: var(--primary) !important;
}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium{
	max-width: 100% !important;
}

.wpforms-container input.wpforms-field-medium, .wpforms-container select.wpforms-field-medium, .wpforms-container .wpforms-field-row.wpforms-field-medium{
	max-width: 100% !important;
}

.wpforms-confirmation-container-full{
    background: transparent !important;
    color: var(--primary-foreground) !important;
    text-align: center !important;
    border: none !important;
}

.sbi_load_btn, .sbi_follow_btn a{
    background: linear-gradient(135deg, var(--primary), var(--primary-glow)) !important;
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    font-weight: 600;
    border-radius: 0.75rem !important;
    align-items: center;
}
.sbi_load_btn:hover, .sbi_follow_btn a:hover{
    background: linear-gradient(135deg, var(--primary), var(--primary-glow)) !important;
    transform: translateY(-2px);
    box-shadow: unset !important;
}

.sbi_load_btn:focus, .sbi_follow_btn a:focus{
    background: linear-gradient(135deg, var(--primary), var(--primary-glow)) !important;
    transform: translateY(-2px);
    box-shadow: unset !important;
}

@media (max-width: 768px) {
    .jtschedule-item {
        width : 100% !important;
    }
}