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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0E27;
    color: white;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #F9A826;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1rem;
    font-weight: 800;
    color: #0E1325;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

nav .nav-links .language-switcher .lang-divider,
.nav-links .language-switcher .lang-divider {
    color: #0E1325 !important;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    color: #0E1325;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0E1325;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #0E1325;
    cursor: pointer;
    z-index: 1001;
}

/* Contact Section - Fixed Spacing */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px 20px;
    width: 100%;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header - Improved */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h1 {
    font-size: 3.5rem;
    color: #F9A826;
    margin-bottom: 15px;
    font-weight: 700;
    padding-top: 20px;
}

.section-header .welcome {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.section-header .status-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.status-container {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status.open {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status.closing-soon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: pulse-warning 2s infinite;
}

.status.closed {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes pulse-warning {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.visitor-count {
    font-size: 2.5rem;
    color: #F9A826;
    font-weight: 700;
    margin-bottom: 8px;
}

.visitor-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.testimonial {
    margin-top: 20px;
    font-style: italic;
    color: white;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #F9A826;
    font-size: 0.9rem;
    margin-top: 8px;
    font-style: normal;
}

/* Alert Boxes */
.alert-box {
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(249, 168, 38, 0.3);
}

.alert-box-inline {
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    padding: 15px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 20px auto 20px auto;
    box-shadow: 0 8px 30px rgba(249, 168, 38, 0.3);
    max-width: 600px;
}

.alert-box-inline p {
    font-size: 1.1rem;
    color: #0A0E27;
    font-weight: 600;
    margin: 0;
}

.alert-box p {
    font-size: 1.2rem;
    color: #0A0E27;
    font-weight: 600;
    margin: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(145deg, rgba(26, 32, 56, 0.6), rgba(15, 20, 33, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 40px;
    border: 2px solid rgba(249, 168, 38, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-section h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(249, 168, 38, 0.1);
    transition: all 0.3s ease;
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-item:hover {
    padding-left: 10px;
}

.price-item .icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.price-item .type {
    font-size: 1.05rem;
    color: white;
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
}

.price-item .price {
    font-size: 1.4rem;
    color: #F9A826;
    font-weight: 700;
}

.group-highlight {
    background: rgba(249, 168, 38, 0.08);
    padding: 12px;
    border-radius: 8px;
    margin: -6px 0;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.opening-hours {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(249, 168, 38, 0.2);
    text-align: center;
}

.opening-hours p {
    color: #F9A826;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Section Right */
.contact-section-right h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Primary CTA */
.primary-cta {
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    border-radius: 15px;
    padding: 40px 35px;
    margin-bottom: 25px;
    text-align: center;
    border: 2px solid rgba(249, 168, 38, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 168, 38, 0.4);
}

.primary-cta .icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.primary-cta h3 {
    color: #0A0E27;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.primary-cta .phone-number {
    color: #0A0E27;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.primary-cta .benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.primary-cta .benefit {
    color: #0A0E27;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Methods */
.contact-method {
    background: linear-gradient(145deg, rgba(26, 32, 56, 0.6), rgba(15, 20, 33, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 15px;
    border: 2px solid rgba(249, 168, 38, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.contact-method:hover {
    background: rgba(249, 168, 38, 0.08);
    border-color: rgba(249, 168, 38, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.2);
}

.contact-method .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-method .content {
    flex: 1;
}

.contact-method h3 {
    color: #F9A826;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-method .arrow {
    color: #F9A826;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(145deg, rgba(26, 32, 56, 0.6), rgba(15, 20, 33, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 40px;
    margin-bottom: 50px;
    border: 2px solid rgba(249, 168, 38, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.faq-section h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 30px;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.faq-question:hover {
    background: rgba(249, 168, 38, 0.12);
    color: #F9A826;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #F9A826;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding: 0 20px 18px 20px;
    font-size: 0.95rem;
}

/* Location Section */
.location-section h2 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.location-info {
    text-align: center;
    margin-bottom: 30px;
}

.location-info p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.location-info .distance {
    color: #F9A826;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(249, 168, 38, 0.3);
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.directions-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    color: #0A0E27;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.5);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(145deg, rgba(26, 32, 56, 0.6), rgba(15, 20, 33, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(249, 168, 38, 0.3);
    margin-top: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.final-cta h3 {
    font-size: 2rem;
    color: #F9A826;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.final-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    color: #0A0E27;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 168, 38, 0.5);
}

/* Footer */
footer {
    background: #0E1325;
    color: white;
    padding: 80px 60px 30px;
    border-top: 2px solid #F9A826;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer Brand Logo */
.footer-brand-logo {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 1400px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.footer-brand-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(249, 168, 38, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(249, 168, 38, 0.4));
    opacity: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #F9A826;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F9A826;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(249, 168, 38, 0.1);
    border: 2px solid rgba(249, 168, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9A826;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #F9A826;
    color: #0E1325;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    color: #F9A826;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Working Hours */
.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(249, 168, 38, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: white;
}

.time {
    color: #3FCFED;
    font-weight: 600;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a::before {
    content: '→';
    color: #F9A826;
    transition: transform 0.3s ease;
}

.quick-links a:hover {
    color: #F9A826;
    transform: translateX(5px);
}

.quick-links a:hover::before {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(249, 168, 38, 0.2);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #F9A826;
}

.footer-divider {
    color: rgba(249, 168, 255, 0.3);
}

/* PDF Download Section */
.pdf-download-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(249, 168, 38, 0.2);
}

.pdf-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.15) 0%, rgba(249, 168, 38, 0.05) 100%);
    border: 2px solid rgba(249, 168, 38, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pdf-btn:hover {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.25) 0%, rgba(249, 168, 38, 0.15) 100%);
    border-color: rgba(249, 168, 38, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.2);
}

.pdf-btn:active {
    transform: translateY(-1px);
}

.pdf-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pdf-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.pdf-title {
    color: #F9A826;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
}

.pdf-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: block;
}

.pdf-arrow {
    color: #F9A826;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pdf-btn:hover .pdf-arrow {
    transform: translateY(3px);
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow: hidden;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.pdf-modal-content {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: #0E1325;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(249, 168, 38, 0.3);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

.pdf-modal.fullscreen .pdf-modal-content {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
}

.pdf-modal-header {
    background: linear-gradient(135deg, #F9A826 0%, #FFC046 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(249, 168, 38, 0.3);
}

.pdf-modal-header h3 {
    color: #0A0E27;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdf-modal-controls {
    display: flex;
    gap: 10px;
}

.pdf-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(10, 14, 39, 0.2);
    border: 2px solid rgba(10, 14, 39, 0.3);
    border-radius: 8px;
    color: #0A0E27;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.pdf-control-btn:hover {
    background: rgba(10, 14, 39, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pdf-control-btn.close-btn:hover {
    background: #ef4444;
    border-color: #dc2626;
    color: white;
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(249, 168, 38, 0.2);
    border-top-color: #F9A826;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.pdf-loading p {
    color: #F9A826;
    font-size: 1rem;
    font-weight: 600;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tablet Responsive */
@media (max-width: 968px) {
    .pdf-modal-content {
        width: 95%;
        height: 85vh;
    }

    .pdf-modal-header {
        padding: 18px 25px;
    }

    .pdf-modal-header h3 {
        font-size: 1.1rem;
    }

    .pdf-control-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pdf-btn {
        padding: 18px 20px;
        gap: 12px;
    }

    .pdf-icon {
        font-size: 1.8rem;
    }

    .pdf-title {
        font-size: 1rem;
    }

    .pdf-subtitle {
        font-size: 0.8rem;
    }

    .pdf-arrow {
        font-size: 1.3rem;
    }

    .pdf-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .pdf-modal-header {
        padding: 15px 20px;
    }

    .pdf-modal-header h3 {
        font-size: 1rem;
    }

    .pdf-control-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .spinner {
        width: 40px;
        height: 40px;
    }

    .pdf-loading p {
        font-size: 0.9rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .pdf-download-section {
        margin-top: 20px;
        padding-top: 20px;
    }

    .pdf-btn {
        padding: 15px 18px;
        gap: 10px;
        border-radius: 10px;
    }

    .pdf-icon {
        font-size: 1.6rem;
    }

    .pdf-title {
        font-size: 0.9rem;
    }

    .pdf-subtitle {
        font-size: 0.75rem;
    }

    .pdf-arrow {
        font-size: 1.2rem;
    }

    .pdf-modal-header {
        padding: 12px 15px;
    }

    .pdf-modal-header h3 {
        font-size: 0.9rem;
    }

    .pdf-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* Tablet Responsive */
@media (max-width: 968px) {
    nav {
        padding: 15px 30px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #F9A826;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .contact-section {
        padding: 120px 20px 60px 20px;
    }

    .section-header h1 {
        font-size: 2.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-section,
    .faq-section {
        padding: 35px 30px;
    }

    .map-container {
        height: 400px;
    }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    .contact-section {
        padding: 110px 20px 50px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h1 {
        font-size: 2.5rem;
        padding-top: 10px;
    }

    .section-header .welcome {
        font-size: 1.1rem;
    }

    .visitor-count {
        font-size: 2rem;
    }

    .alert-box,
    .alert-box-inline {
        padding: 15px 25px;
        margin-bottom: 25px;
    }

    .alert-box p {
        font-size: 1.05rem;
    }

    .alert-box-inline p {
        font-size: 1rem;
    }

    .content-grid {
        gap: 35px;
    }

    .pricing-section h2,
    .contact-section-right h2,
    .faq-section h2,
    .location-section h2 {
        font-size: 1.7rem;
    }

    .pricing-section,
    .faq-section {
        padding: 30px 25px;
    }

    .price-item {
        padding: 15px 0;
    }

    .price-item .type {
        font-size: 1rem;
    }

    .price-item .price {
        font-size: 1.3rem;
    }

    .primary-cta {
        padding: 35px 30px;
    }

    .primary-cta .icon {
        font-size: 3rem;
    }

    .primary-cta h3 {
        font-size: 1.6rem;
    }

    .primary-cta .phone-number {
        font-size: 1.7rem;
    }

    .contact-method {
        padding: 20px 25px;
    }

    .contact-method .icon {
        font-size: 2.2rem;
    }

    .contact-method h3 {
        font-size: 1rem;
    }

    .map-container {
        height: 350px;
    }

    .final-cta {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .final-cta h3 {
        font-size: 1.7rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 968px) {
    footer {
        padding: 60px 30px 30px;
    }

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

@media (max-width: 768px) {
    footer {
        padding: 50px 25px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand-logo img {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {

    /* Global mobile constraints */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navigation */
    nav {
        padding: 12px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .logo {
        font-size: 1rem;
    }

    /* Main Section Container */
    .contact-section {
        padding: 100px 15px 40px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Header Section */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        padding-top: 5px;
    }

    .section-header .welcome {
        font-size: 1rem;
    }

    .section-header .status {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .visitor-count {
        font-size: 1.8rem;
    }

    .visitor-label {
        font-size: 0.9rem;
    }

    .testimonial {
        font-size: 1rem;
    }

    /* Alert Boxes */
    .alert-box,
    .alert-box-inline {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 10px;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .alert-box p {
        font-size: 0.95rem;
    }

    .alert-box-inline p {
        font-size: 0.9rem;
    }

    /* Content Grid */
    .content-grid {
        display: block;
        gap: 25px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    /* Pricing & FAQ Sections */
    .pricing-section,
    .faq-section {
        padding: 20px;
        border-radius: 15px;
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        margin: 0 auto 20px auto;
        box-sizing: border-box;
        overflow: visible;
    }

    .pricing-section h2,
    .contact-section-right h2,
    .faq-section h2,
    .location-section h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-section-right h2 {
        text-align: center;
    }

    .pricing-subtitle,
    .contact-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .contact-subtitle {
        text-align: center;
    }

    /* Price Items - Critical Fix */
    .price-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 5px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .price-item .icon {
        font-size: 1.3rem;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    .price-item .type {
        font-size: 0.95rem;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        overflow: visible;
    }

    .price-item .price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #F9A826;
        flex-shrink: 0;
        white-space: nowrap;
        min-width: fit-content;
        padding-left: 10px;
    }

    .group-highlight {
        padding: 16px 10px;
        margin: 0;
        position: relative;
        overflow: visible;
    }

    .popular-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: -8px;
        right: 0;
    }

    /* Opening Hours */
    .opening-hours {
        margin-top: 25px;
        padding-top: 20px;
    }

    .opening-hours p {
        font-size: 1rem;
    }

    /* Primary CTA */
    .primary-cta {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .primary-cta .icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .primary-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .primary-cta .phone-number {
        font-size: 1.1rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }

    .primary-cta .benefits {
        gap: 15px;
        margin-top: 12px;
    }

    .primary-cta .benefit {
        font-size: 0.75rem;
    }

    /* Contact Methods */
    .contact-method {
        padding: 18px 15px;
        margin-bottom: 12px;
        border-radius: 12px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-method .icon {
        font-size: 2rem;
    }

    .contact-method h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .contact-method p {
        font-size: 0.85rem;
    }

    .contact-method .arrow {
        font-size: 1.3rem;
    }

    /* FAQ Section */
    .faq-section {
        margin-bottom: 40px;
    }

    .faq-section h2 {
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }

    .faq-question::after {
        font-size: 1.3rem;
    }

    .faq-answer.active {
        max-height: 250px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        padding: 0 15px 15px 15px;
    }

    /* Location Section */
    .location-info p {
        font-size: 1rem;
    }

    .location-info .distance {
        font-size: 0.95rem;
    }

    .map-container {
        height: 300px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .map-overlay {
        bottom: 15px;
    }

    .directions-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 35px 15px;
        margin-top: 40px;
        border-radius: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .final-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .final-cta-btn {
        padding: 14px 35px;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Footer Logo */
    .footer-brand-logo {
        margin-bottom: 35px;
    }

    .footer-brand-logo img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .contact-icon {
        margin-top: 0;
    }

    .social-links {
        justify-content: center;
    }

    .working-hours-list li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 15px 0;
    }

    .quick-links {
        text-align: center;
    }

    .quick-links a {
        justify-content: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divider {
        display: none;
    }
}

/* Skip to Content Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #F9A826;
    color: #1a1a1a;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}