/* ================================================
   LONDON EYES - LTR (English) Overrides
   ================================================ */

/* Apply English font */
body {
    font-family: var(--font-en);
}

/* Weather Widget LTR adjustments */
.hero-sect .wrapper .weather {
    flex-direction: row;
}

.hero-sect .wrapper .clcok {
    flex-direction: row;
    padding-left: var(--space-md);
    padding-right: 0;
    margin-left: var(--space-sm);
    margin-right: 0;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-sect .wrapper .clcok > div {
    flex-direction: row;
}

/* About section heading - center the underline */
.contact-us .desc h3::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* Section box border position for LTR */
.sections .box::before {
    left: 0;
    right: auto;
}

.sections .box:nth-child(even)::before {
    left: auto;
    right: 0;
}

/* Section box icon - no rotation needed for LTR */
.sections .box h3 i {
    transform: none;
}

/* Floating CTA for LTR */
.floating-cta {
    right: var(--space-xl);
    left: auto;
}

/* Review card quote position for LTR */
.review-card::before {
    right: var(--space-lg);
    left: auto;
}

/* Footer - Fix layout for LTR */
footer .links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
}

footer .links ul h4 {
    width: 100%;
    text-align: center;
    margin: var(--space-lg) 0 var(--space-sm);
}

footer .links ul li {
    display: inline-flex;
}

footer .links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

footer .links ul li a img {
    width: 24px;
    height: 24px;
}

/* Scroll indicator text for LTR */
.hero-sect .scroll-indicator {
    letter-spacing: 2px;
}

.hero-sect .scroll-indicator span {
    letter-spacing: 2px;
}

/* Hero Logo position for LTR - LEFT side */
.hero-sect .hero-logo {
    left: var(--space-xl);
    right: auto;
}

/* Weather Widget for LTR - RIGHT side */
.hero-sect .wrapper {
    left: auto;
    right: calc(var(--space-xl) + 100px);
}

/* Language toggle for LTR - next to weather on right */
.hero-sect .lang {
    right: var(--space-xl);
    left: auto;
}

/* Responsive adjustments for LTR */
@media (max-width: 768px) {
    .hero-sect .hero-logo {
        left: var(--space-lg);
        right: auto;
    }
    
    .hero-sect .wrapper {
        left: auto;
        right: calc(var(--space-lg) + 95px);
    }
    
    .hero-sect .lang {
        right: var(--space-lg);
        left: auto;
    }
}

@media (max-width: 576px) {
    .hero-sect .hero-logo {
        left: var(--space-md);
        right: auto;
    }
    
    .hero-sect .wrapper {
        left: auto;
        right: calc(var(--space-md) + 90px);
    }
    
    .hero-sect .lang {
        right: var(--space-md);
        left: auto;
    }
}