/* Contact section - zachováno */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #444;
    font-size: 1.1rem;
}

.contact-details .material-icons {
    color: var(--primary-blue);
    font-size: 24px;
}

.contact-details a {
    color: #444;
    text-decoration: none;
}

.contact-details a:hover,
.contact-details a:visited {
    color: #444;
}

/* Booking section - zachováno */
.booking-section {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.booking-card {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.booking-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.booking-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-benefits {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.booking-benefits .material-icons {
    color: #4CAF50;
    background: var(--white);
    border-radius: 50%;
    font-size: 20px;
}

.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: auto;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.booking-button:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Booking overlay - zachováno */
.booking-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    margin: auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    animation: modalAppear 0.3s ease;
}

.booking-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.close-booking {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-booking:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

@keyframes modalAppear {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.booking-open {
    overflow: hidden;
}

/* Testimonials - zachováno */
.testimonials {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 4rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.testimonial-author {
    float: right;
    width: 160px;
    text-align: center;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.author-location {
    color: #666;
    font-size: 1rem;
}

.rating {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
}

.rating .material-icons {
    color: #ffd700;
    font-size: 24px;
}

.testimonial-content p {
    font-style: normal;
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    overflow: hidden;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.testimonial-arrow:hover {
    background: var(--light-blue);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev { 
    left: 0;
}

.testimonial-next { 
    right: 0;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.slide-in-right {
    animation: slideInFromRight 0.3s ease forwards;
}

.slide-in-left {
    animation: slideInFromLeft 0.3s ease forwards;
}

.slide-out-left {
    animation: slideOutToLeft 0.3s ease forwards;
}

.slide-out-right {
    animation: slideOutToRight 0.3s ease forwards;
}

/* Responsive pro původní sekce */
@media (max-width: 992px) {
    .contact-container {
        gap: 2rem;
    }
    
    .contact-info,
    .booking-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 1.5rem 4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        float: none;
        width: 100%;
        margin: 2rem 0 0 0;
    }

    .testimonial-content p {
        overflow: visible;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .rating {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 1rem 3.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
    }

    .booking-card,
    .contact-info {
        padding: 1.5rem;
    }
    
    .author-image {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   MODERNÍ FOOTER - PŘESNĚ PODLE SCREENSHOTU
   ============================================ */

footer.modern-footer {
    background: #1c2d3f;
    color: #e8eaed;
    padding: 4rem 0 0;
    margin-top: 6rem;
}

footer.modern-footer .footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo a popis */
footer.modern-footer .footer-logo .brand-text {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

footer.modern-footer .footer-logo .brand-main {
    color: #ffffff;
}

footer.modern-footer .footer-logo .brand-domain {
    color: #25A9EA;
}

footer.modern-footer .footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Nadpisy sloupců */
footer.modern-footer .footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

/* Odkazy */
footer.modern-footer .footer-links,
footer.modern-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

footer.modern-footer .footer-links li a,
footer.modern-footer .footer-contact li a,
footer.modern-footer .footer-contact li span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

footer.modern-footer .footer-links li a:hover,
footer.modern-footer .footer-contact li a:hover {
    color: #ffffff;
}

/* Kontaktní informace */
footer.modern-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

footer.modern-footer .footer-contact i {
    color: #25A9EA;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

/* Sociální sítě */
footer.modern-footer .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

footer.modern-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.modern-footer .footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer.modern-footer .footer-social i {
    font-size: 1.1rem;
}

/* Spodní část footeru */
footer.modern-footer .footer-bottom {
    padding: 2rem 0;
}

footer.modern-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

footer.modern-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

footer.modern-footer .footer-copyright small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

footer.modern-footer .footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

footer.modern-footer .footer-legal a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
    footer.modern-footer .footer-main {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    footer.modern-footer {
        padding: 3rem 0 0;
        margin-top: 4rem;
    }
    
    footer.modern-footer .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    footer.modern-footer {
        padding: 2.5rem 0 0;
        margin-top: 3rem;
    }
    
    footer.modern-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer.modern-footer .footer-links,
    footer.modern-footer .footer-contact {
        align-items: center;
    }
    
    footer.modern-footer .footer-social {
        justify-content: center;
    }
    
    footer.modern-footer .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    footer.modern-footer {
        padding: 2rem 0 0;
    }
    
    footer.modern-footer .footer-logo .brand-text {
        font-size: 0.95rem;
    }
    
    footer.modern-footer .footer-tagline {
        font-size: 0.9rem;
    }
    
    footer.modern-footer .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    footer.modern-footer .footer-column h4 {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    footer.modern-footer {
        background: white;
        color: black;
        padding: 2rem 0;
        margin-top: 2rem;
        border-top: 2px solid black;
    }
    
    footer.modern-footer .footer-social {
        display: none;
    }
    
    footer.modern-footer .footer-logo .brand-main,
    footer.modern-footer .footer-column h4,
    footer.modern-footer .footer-links li a,
    footer.modern-footer .footer-contact li a,
    footer.modern-footer .footer-contact li span,
    footer.modern-footer .footer-copyright {
        color: black !important;
    }
}