
:root {
    --jr-charcoal: #2a2a2a;
    --jr-charcoal-light: #3f3f3f;
    --jr-charcoal-dark: #1a1a1a;
    --jr-gold: #c9a961;
    --jr-gold-light: #d4b876;
    --jr-gold-dark: #b39450;
    --jr-slate: #5a6470;
    --jr-slate-light: #758192;
    --jr-slate-dark: #434b54;
    --jr-cream: #f5f3f0;
    --jr-white: #ffffff;
    --jr-gray-light: #e8e6e3;
    --jr-text-primary: #2a2a2a;
    --jr-text-secondary: #5a6470;
    
    --jr-font-display: 'Playfair Display', serif;
    --jr-font-body: 'Inter', sans-serif;
    
    --jr-spacing-xs: 0.5rem;
    --jr-spacing-sm: 1rem;
    --jr-spacing-md: 2rem;
    --jr-spacing-lg: 4rem;
    --jr-spacing-xl: 6rem;
    
    --jr-transition-fast: 0.2s ease;
    --jr-transition-med: 0.4s ease;
    --jr-transition-slow: 0.6s ease;
}

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

body {
    font-family: var(--jr-font-body);
    color: var(--jr-text-primary);
    background-color: var(--jr-cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--jr-font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--jr-charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--jr-transition-fast);
}

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


.jr-navbar-main {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.jr-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-family: var(--jr-font-display);
    color: var(--jr-charcoal);
    font-weight: 600;
}

.jr-logo-icon {
    color: var(--jr-gold);
    font-size: 1.6rem;
}

.jr-nav-menu .jr-nav-link {
    color: var(--jr-text-secondary);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    position: relative;
    transition: var(--jr-transition-fast);
}

.jr-nav-menu .jr-nav-link:hover,
.jr-nav-menu .jr-nav-link.active {
    color: var(--jr-gold);
}

.jr-nav-menu .jr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--jr-gold);
    transition: transform var(--jr-transition-med);
}

.jr-nav-menu .jr-nav-link:hover::after,
.jr-nav-menu .jr-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}


.jr-hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jr-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.jr-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.7) 0%, rgba(90, 100, 112, 1) 100%);
}

.jr-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--jr-white);
}

.jr-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.jr-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.jr-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jr-btn-primary,
.jr-btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--jr-transition-med);
    border: 2px solid transparent;
    display: inline-block;
}

.jr-btn-primary {
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
    border-color: var(--jr-gold);
}

.jr-btn-primary:hover {
    background-color: var(--jr-gold-dark);
    border-color: var(--jr-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.jr-btn-secondary {
    background-color: transparent;
    color: var(--jr-white);
    border-color: var(--jr-white);
}

.jr-btn-secondary:hover {
    background-color: var(--jr-white);
    color: var(--jr-charcoal);
    transform: translateY(-2px);
}

.jr-hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.jr-scroll-icon {
    color: var(--jr-white);
    font-size: 2rem;
    animation: jr-bounce 2s infinite;
}


.jr-section-header {
    margin-bottom: var(--jr-spacing-lg);
}

.jr-section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--jr-charcoal);
}

.jr-section-subtitle {
    font-size: 1.2rem;
    color: var(--jr-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.jr-equipment-explorer-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-white);
}

.jr-filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--jr-spacing-lg);
}

.jr-filter-btn {
    padding: 0.75rem 1.8rem;
    border: 2px solid var(--jr-gray-light);
    background-color: transparent;
    color: var(--jr-text-secondary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--jr-transition-fast);
}

.jr-filter-btn:hover,
.jr-filter-btn.active {
    background-color: var(--jr-charcoal);
    color: var(--jr-white);
    border-color: var(--jr-charcoal);
}

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

.jr-equipment-card {
    background-color: var(--jr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--jr-transition-med);
}

.jr-equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.jr-equipment-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.jr-equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jr-equipment-card:hover .jr-equipment-image {
    transform: scale(1.08);
}

.jr-equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--jr-transition-med);
}

.jr-equipment-card:hover .jr-equipment-overlay {
    opacity: 1;
}

.jr-btn-details {
    padding: 0.7rem 1.8rem;
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jr-transition-fast);
}

.jr-btn-details:hover {
    background-color: var(--jr-gold-light);
}

.jr-equipment-info {
    padding: 1.5rem;
}

.jr-equipment-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--jr-charcoal);
}

.jr-equipment-category {
    color: var(--jr-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jr-equipment-specs {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--jr-text-secondary);
}

.jr-equipment-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jr-equipment-specs .fa-circle {
    font-size: 0.4rem;
    color: var(--jr-gold);
}


.jr-services-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-cream);
}

.jr-services-grid {
    margin-top: var(--jr-spacing-lg);
}

.jr-service-card-premium {
    background-color: var(--jr-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--jr-transition-med);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jr-service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.jr-service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--jr-gold) 0%, var(--jr-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.jr-service-icon {
    font-size: 2rem;
    color: var(--jr-white);
}

.jr-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--jr-charcoal);
}

.jr-service-description {
    color: var(--jr-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.jr-service-details {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.jr-service-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--jr-charcoal);
}

.jr-service-list {
    list-style: none;
    padding-left: 0;
}

.jr-service-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: var(--jr-text-secondary);
    line-height: 1.6;
}

.jr-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--jr-gold);
    border-radius: 50%;
}

.jr-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--jr-gold);
    font-weight: 600;
    transition: var(--jr-transition-fast);
}

.jr-service-cta:hover {
    color: var(--jr-gold-dark);
    gap: 0.8rem;
}


.jr-reviews-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-white);
}

.jr-review-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.jr-review-track {
    display: flex;
    transition: transform 0.5s ease;
}

.jr-review-card {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
}

.jr-review-stars {
    color: var(--jr-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.jr-review-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--jr-text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.jr-review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.jr-review-author strong {
    font-family: var(--jr-font-display);
    font-size: 1.1rem;
    color: var(--jr-charcoal);
}

.jr-review-author span {
    color: var(--jr-text-secondary);
    font-size: 0.95rem;
}

.jr-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--jr-gold);
    color: var(--jr-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--jr-transition-fast);
    z-index: 10;
}

.jr-carousel-nav:hover {
    background-color: var(--jr-gold-dark);
}

.jr-carousel-prev {
    left: 0;
}

.jr-carousel-next {
    right: 0;
}


.jr-team-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-cream);
}

.jr-team-grid {
    margin-top: var(--jr-spacing-lg);
}

.jr-team-member-profile {
    background-color: var(--jr-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--jr-transition-med);
}

.jr-team-member-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.jr-team-image-wrapper {
    height: 300px;
    overflow: hidden;
}

.jr-service-detail-block{
    margin-top: 40px;
}

.fr-footer-disclaimer {
    background: rgba(99, 102, 241, 0.05);
    padding: 2rem;
    border-radius: var(--fr-radius-lg);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--fr-text-muted);
    font-size: 0.9rem;
}

.jr-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jr-team-member-profile:hover .jr-team-image {
    transform: scale(1.05);
}

.jr-team-info {
    padding: 2rem;
}

.jr-team-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--jr-charcoal);
}

.jr-team-role {
    color: var(--jr-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.jr-team-bio {
    color: var(--jr-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}


.jr-booking-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-white);
}

.jr-booking-interactive-panel {
    background-color: var(--jr-cream);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.jr-booking-form .jr-form-group {
    margin-bottom: 1.5rem;
}

.jr-booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--jr-charcoal);
}

.jr-form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--jr-gray-light);
    border-radius: 6px;
    font-family: var(--jr-font-body);
    font-size: 1rem;
    transition: var(--jr-transition-fast);
}

.jr-form-control:focus {
    outline: none;
    border-color: var(--jr-gold);
}

.jr-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.jr-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    color: var(--jr-text-secondary);
}

.jr-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.jr-booking-summary {
    background-color: var(--jr-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.jr-summary-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--jr-charcoal);
}

.jr-cost-breakdown {
    margin-bottom: 2rem;
}

.jr-cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: var(--jr-text-secondary);
}

.jr-cost-divider {
    height: 2px;
    background-color: var(--jr-gray-light);
    margin: 1rem 0;
}

.jr-cost-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--jr-charcoal);
    padding: 1rem 0;
}

.jr-cost-disclaimer {
    font-size: 0.85rem;
    color: var(--jr-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.jr-btn-booking {
    width: 100%;
    padding: 1rem;
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--jr-transition-fast);
}

.jr-btn-booking:hover {
    background-color: var(--jr-gold-dark);
}


.jr-faq-section {
    padding: var(--jr-spacing-xl) 0;
    background-color: var(--jr-cream);
}

.jr-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.jr-faq-item {
    background-color: var(--jr-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.jr-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jr-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--jr-transition-fast);
}

.jr-faq-question:hover {
    background-color: var(--jr-gray-light);
}

.jr-faq-icon {
    transition: transform var(--jr-transition-fast);
    color: var(--jr-gold);
}

.jr-faq-item.active .jr-faq-icon {
    transform: rotate(180deg);
}

.jr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.jr-faq-item.active .jr-faq-answer {
    max-height: 500px;
}

.jr-faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--jr-text-secondary);
    line-height: 1.7;
}


.jr-quote-strip {
    background: linear-gradient(135deg, var(--jr-charcoal) 0%, var(--jr-slate-dark) 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.jr-quote-slider {
    display: flex;
    animation: jr-slide 40s linear infinite;
}

.jr-quote-item {
    min-width: 100%;
    text-align: center;
    padding: 0 3rem;
}

.jr-quote-item p {
    font-family: var(--jr-font-display);
    font-size: 1.8rem;
    color: var(--jr-white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.jr-quote-item span {
    color: var(--jr-gold);
    font-size: 1.1rem;
}


.jr-newsletter-section {
    padding: 5rem 0;
    background-color: var(--jr-charcoal);
}

.jr-newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.jr-newsletter-title {
    font-size: 2.5rem;
    color: var(--jr-white);
    margin-bottom: 1rem;
}

.jr-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.jr-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jr-newsletter-input-group {
    display: flex;
    gap: 1rem;
}

.jr-newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--jr-white);
    font-size: 1rem;
}

.jr-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.jr-newsletter-btn {
    padding: 1rem 2.5rem;
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jr-transition-fast);
}

.jr-newsletter-btn:hover {
    background-color: var(--jr-gold-light);
}

.jr-consent-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
}

.jr-consent-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.jr-consent-label a {
    color: var(--jr-gold);
    text-decoration: underline;
}

.jr-newsletter-message {
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.jr-newsletter-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.jr-newsletter-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}


.jr-footer-main {
    background-color: var(--jr-charcoal-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem 0;
}

.jr-footer-content {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jr-footer-heading {
    font-family: var(--jr-font-display);
    color: var(--jr-white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.jr-footer-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.jr-footer-social {
    display: flex;
    gap: 1rem;
}

.jr-social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jr-white);
    transition: var(--jr-transition-fast);
}

.jr-social-link:hover {
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
}

.jr-footer-links {
    list-style: none;
}

.jr-footer-links li {
    margin-bottom: 0.7rem;
}

.jr-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--jr-transition-fast);
}

.jr-footer-links a:hover {
    color: var(--jr-gold);
}

.jr-footer-contact {
    list-style: none;
}

.jr-footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.jr-footer-contact i {
    color: var(--jr-gold);
    margin-top: 0.2rem;
}

.jr-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
}


.jr-page-header {
    background: linear-gradient(135deg, var(--jr-charcoal) 0%, var(--jr-slate-dark) 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    color: var(--jr-white);
}

.jr-page-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--jr-white);
}

.jr-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}


.jr-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--jr-charcoal);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.jr-cookie-consent.show {
    transform: translateY(0);
}

.jr-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.jr-cookie-content p {
    color: var(--jr-white);
    margin: 0;
}

.jr-cookie-content a {
    color: var(--jr-gold);
    text-decoration: underline;
}

.jr-cookie-actions {
    display: flex;
    gap: 1rem;
}

.jr-btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jr-transition-fast);
}

.jr-btn-accept {
    background-color: var(--jr-gold);
    color: var(--jr-charcoal);
}

.jr-btn-accept:hover {
    background-color: var(--jr-gold-light);
}

.jr-btn-decline {
    background-color: transparent;
    color: var(--jr-white);
    border: 2px solid var(--jr-white);
}

.jr-btn-decline:hover {
    background-color: var(--jr-white);
    color: var(--jr-charcoal);
}


.jr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.jr-modal.active {
    display: flex;
}

.jr-modal-content {
    background-color: var(--jr-white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.jr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--jr-text-secondary);
    transition: var(--jr-transition-fast);
}

.jr-modal-close:hover {
    color: var(--jr-charcoal);
}

.jr-modal-body {
    padding: 3rem;
}


@media (max-width: 991px) {
    .jr-hero-title {
        font-size: 3rem;
    }
    
    .jr-section-title {
        font-size: 2.5rem;
    }
    
    .jr-carousel-prev {
        left: 0;
    }
    
    .jr-carousel-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .jr-hero-title {
        font-size: 2.2rem;
    }
    
    .jr-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .jr-hero-cta {
        flex-direction: column;
    }
    
    .jr-section-title {
        font-size: 2rem;
    }
    
    .jr-equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .jr-newsletter-input-group {
        flex-direction: column;
    }
    
    .jr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .jr-page-title {
        font-size: 2.5rem;
    }
}


.jr-btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.jr-text-center {
    text-align: center;
}

.jr-mb-4 {
    margin-bottom: 2rem;
}

.jr-mt-4 {
    margin-top: 2rem;
}




.navbar-brand img{
    max-width: 150px;
    width: 150px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}

@media(max-width: 580px){
    article{
        padding: 20px;
    }
}



.jr-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.jr-timeline-item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 1;
  transform: translateY(30px);
  transition: var(--om-transition-smooth);
}

.jr-timeline-item.jr-visible {
  opacity: 1;
  transform: translateY(0);
}

.jr-timeline-year, .jr-principle-icon {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: var(--om-accent);
  color: var(--om-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 30px;
  box-shadow: 0 5px 20px rgba(47, 93, 255, 0.3);
}


.jr-contact-info-card{
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 15px;
}
.jr-contact-form-wrapper {
  background: var(--om-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.jr-form-group {
  margin-bottom: 25px;
}

.jr-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--om-graphite);
}

.jr-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--om-border-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--om-font-body);
  transition: var(--om-transition-fast);
}

.jr-form-control:focus {
  outline: none;
  border-color: var(--om-accent);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.1);
}

.jr-form-control.jr-error {
  border-color: #DC3545;
}

.jr-error-message {
  color: #DC3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.jr-error-message.jr-show {
  display: block;
}

textarea.jr-form-control {
  resize: vertical;
  min-height: 120px;
}


.jr-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--fr-text-primary);
}

.jr-form-input,
.jr-form-textarea,
.jr-form-select {
  width: 100%;
  padding: 1rem;
  background: var(--fr-bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--fr-radius-md);
  color: var(--fr-text-primary);
  font-size: 1rem;
  transition: all var(--fr-transition-fast);
}

.jr-form-input:focus,
.jr-form-textarea:focus,
.jr-form-select:focus {
  outline: none;
  border-color: var(--fr-accent-neon);
  box-shadow: 0 0 0 3px var(--fr-accent-neon-glow);
}

.jr-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.jr-form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.jr-captcha-wrapper {
  margin: 25px 0;
  padding: 20px;
  background: var(--om-light-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.jr-captcha-question {
  font-weight: 600;
  flex: 1;
}

.jr-captcha-input {
  width: 80px;
  padding: 10px;
  border: 2px solid var(--om-border-gray);
  border-radius: 4px;
  text-align: center;
  font-size: 1.1rem;
}

.jr-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--om-accent);
  color: var(--om-white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--om-transition-smooth);
}

.jr-form-submit:hover {
  background: var(--om-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 93, 255, 0.3);
}

.jr-form-submit:disabled {
  background: var(--om-medium-gray);
  cursor: not-allowed;
  transform: none;
}

.jr-map-container {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.jr-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}