/* LuckyEdgeHub.com - Unique premium bar guide styles */
/* All class names use leh- prefix for uniqueness */

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

:root {
    --leh-primary: #0C2D2D;
    --leh-secondary: #1A4D4D;
    --leh-accent: #C9A227;
    --leh-accent-light: #E5C76B;
    --leh-bg-dark: #061A1A;
    --leh-surface: rgba(201, 162, 39, 0.08);
    --leh-text: #F5F0E6;
    --leh-text-muted: rgba(245, 240, 230, 0.85);
    --leh-border: rgba(201, 162, 39, 0.25);
    --leh-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --leh-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--leh-text);
    background: var(--leh-primary);
    background-image: linear-gradient(160deg, rgba(12, 45, 45, 0.97) 0%, rgba(6, 26, 26, 0.98) 100%), url('images/leh-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(12, 45, 45, 0.92) 0%, rgba(6, 26, 26, 0.95) 50%, rgba(12, 45, 45, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
}

.leh-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated background pattern */
.leh-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--leh-accent) 1px, transparent 0);
    background-size: 40px 40px;
    animation: leh-pattern-move 30s linear infinite;
}

@keyframes leh-pattern-move {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Header */
.leh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(6, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--leh-border);
    transition: var(--leh-transition);
}

.leh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leh-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--leh-text);
}

.leh-logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.leh-logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.leh-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--leh-accent-light);
}

.leh-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leh-nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.leh-nav-link {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--leh-text-muted);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--leh-transition);
}

.leh-nav-link:hover,
.leh-nav-link.leh-active {
    color: var(--leh-accent-light);
    background: var(--leh-surface);
}

.leh-nav-link.leh-cta {
    background: linear-gradient(135deg, var(--leh-accent), #A68521);
    color: var(--leh-primary);
}

.leh-nav-link.leh-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.leh-nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid var(--leh-border);
    color: var(--leh-text);
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--leh-transition);
}

.leh-nav-close:hover {
    background: var(--leh-surface);
    color: var(--leh-accent-light);
}

.leh-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid var(--leh-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: var(--leh-transition);
}

.leh-burger span {
    display: block;
    height: 2px;
    background: var(--leh-accent-light);
    border-radius: 2px;
    transition: var(--leh-transition);
}

.leh-burger:hover {
    background: var(--leh-surface);
}

@media (max-width: 991px) {
    .leh-burger {
        display: flex;
    }

    .leh-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--leh-bg-dark);
        border-left: 1px solid var(--leh-border);
        padding: 80px 24px 24px;
        flex-direction: column;
        align-items: stretch;
        transition: right 0.35s ease;
        z-index: 1001;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .leh-nav.leh-open {
        right: 0;
    }

    .leh-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .leh-nav-link {
        padding: 14px 18px;
        border-radius: 8px;
    }

    .leh-nav-close {
        display: flex;
    }
}

/* Hero - unique split-style layout */
.leh-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
    .leh-hero {
        min-height: 70vh;
    }
}

.leh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 45, 45, 0.65);
    z-index: 1;
    pointer-events: none;
}

.leh-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--leh-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

.leh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.leh-hero-badge {
    display: inline-block;
    padding: 10px 22px;
    background: var(--leh-accent-light);
    border: 1px solid var(--leh-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--leh-primary);
    margin-bottom: 28px;
    animation: leh-fade-up 0.8s ease-out;
}

.leh-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--leh-text);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: leh-fade-up 0.8s ease-out 0.1s both;
}

.leh-hero-desc {
    font-size: 18px;
    color: var(--leh-text-muted);
    margin-bottom: 40px;
    max-width: 560px;
    animation: leh-fade-up 0.8s ease-out 0.2s both;
}

.leh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: leh-fade-up 0.8s ease-out 0.3s both;
}

.leh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--leh-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.leh-btn-primary {
    background: linear-gradient(135deg, var(--leh-accent), #A68521);
    color: var(--leh-primary);
    border-color: var(--leh-accent);
}

.leh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4);
}

.leh-btn-outline {
    background: transparent;
    color: var(--leh-accent-light);
    border-color: var(--leh-border);
}

.leh-btn-outline:hover {
    background: var(--leh-surface);
    border-color: var(--leh-accent);
}

@keyframes leh-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section common */
.leh-section {
    padding: 100px 0;
}

.leh-sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--leh-accent-light);
    margin-bottom: 12px;
}

.leh-sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--leh-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.leh-sec-subtitle {
    font-size: 17px;
    color: var(--leh-text-muted);
    max-width: 600px;
}

/* Why Us - first content section (unique order) */
.leh-why {
    padding: 100px 0;
}

.leh-why-head {
    text-align: center;
    margin-bottom: 56px;
}

.leh-why-head .leh-sec-subtitle {
    margin: 0 auto;
}

.leh-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.leh-why-card {
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--leh-transition);
    opacity: 0;
    transform: translateY(20px);
}

.leh-why-card.leh-visible {
    opacity: 1;
    transform: translateY(0);
}

.leh-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--leh-accent);
    box-shadow: var(--leh-shadow);
}

.leh-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), transparent);
    border-radius: 14px;
    color: var(--leh-accent-light);
}

.leh-why-icon svg {
    width: 28px;
    height: 28px;
}

.leh-why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--leh-text);
}

.leh-why-text {
    font-size: 15px;
    color: var(--leh-text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .leh-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leh-why-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured bars */
.leh-bars {
    padding: 100px 0;
}

.leh-bars-head {
    margin-bottom: 56px;
}

.leh-bars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .leh-bars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .leh-bars-grid {
        grid-template-columns: 1fr;
    }
}

.leh-bar-card {
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--leh-transition);
    opacity: 0;
    transform: translateY(24px);
}

.leh-bar-card.leh-visible {
    opacity: 1;
    transform: translateY(0);
}

.leh-bar-card:hover {
    transform: translateY(-8px);
    border-color: var(--leh-accent);
    box-shadow: var(--leh-shadow);
}

.leh-bar-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.leh-bar-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: var(--leh-secondary);
}

.leh-bar-card:hover .leh-bar-card-img {
    transform: scale(1.06);
}

.leh-bar-card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(6, 26, 26, 0.9);
    border-radius: 10px;
    font-weight: 700;
    color: var(--leh-accent-light);
    font-size: 15px;
}

.leh-bar-card-body {
    padding: 28px 24px;
}

.leh-bar-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--leh-text);
}

.leh-bar-card-address {
    font-size: 14px;
    color: var(--leh-accent-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.leh-bar-card-desc {
    font-size: 15px;
    color: var(--leh-text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.leh-bar-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.leh-bar-card-feature {
    padding: 6px 12px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--leh-accent-light);
}

.leh-bar-card .leh-btn {
    width: 100%;
}

/* Discover section */
.leh-discover {
    padding: 100px 0;
}

.leh-discover-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.leh-discover-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--leh-border);
}

.leh-discover-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leh-discover-content .leh-sec-label {
    margin-bottom: 12px;
}

.leh-discover-content .leh-sec-title {
    margin-bottom: 24px;
}

.leh-discover-text {
    font-size: 16px;
    color: var(--leh-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.leh-discover-content .leh-btn {
    margin-top: 12px;
}

@media (max-width: 991px) {
    .leh-discover-inner {
        grid-template-columns: 1fr;
    }

    .leh-discover-visual {
        max-height: 400px;
        aspect-ratio: 16/10;
    }
}

/* Testimonials */
.leh-testimonials {
    padding: 100px 0;
}

.leh-testimonials-head {
    text-align: center;
    margin-bottom: 56px;
}

.leh-testimonials-head .leh-sec-subtitle {
    margin: 0 auto;
}

.leh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leh-testimonial-card {
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--leh-transition);
    opacity: 0;
    transform: translateY(20px);
}

.leh-testimonial-card.leh-visible {
    opacity: 1;
    transform: translateY(0);
}

.leh-testimonial-card:hover {
    border-color: var(--leh-accent);
}

.leh-testimonial-stars {
    color: var(--leh-accent);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.leh-testimonial-quote {
    font-size: 15px;
    color: var(--leh-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.leh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.leh-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leh-accent), var(--leh-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--leh-primary);
}

.leh-testimonial-name {
    font-weight: 700;
    color: var(--leh-text);
    font-size: 16px;
}

.leh-testimonial-location {
    font-size: 14px;
    color: var(--leh-accent-light);
}

@media (max-width: 991px) {
    .leh-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Page header (inner pages) */
.leh-page-header {
    padding: 140px 0 60px;
    text-align: center;
}

.leh-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--leh-text);
    margin-bottom: 12px;
}

.leh-page-subtitle {
    font-size: 18px;
    color: var(--leh-text-muted);
}

/* Content area */
.leh-content {
    padding: 40px 0 100px;
}

.leh-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.leh-content-inner p {
    margin-bottom: 20px;
    color: var(--leh-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.leh-content-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin: 36px 0 16px;
    color: var(--leh-text);
}

.leh-content-inner ul {
    margin: 16px 0 24px;
    padding-left: 24px;
    color: var(--leh-text-muted);
}

/* Form */
.leh-form {
    max-width: 560px;
    margin: 0 auto;
}

.leh-form-group {
    margin-bottom: 24px;
}

.leh-form-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--leh-text);
    margin-bottom: 8px;
}

.leh-form-input,
.leh-form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--leh-text);
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 10px;
    transition: var(--leh-transition);
}

.leh-form-input::placeholder,
.leh-form-textarea::placeholder {
    color: var(--leh-text-muted);
    opacity: 0.8;
}

.leh-form-input:focus,
.leh-form-textarea:focus {
    outline: none;
    border-color: var(--leh-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.leh-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.leh-form .leh-btn {
    width: 100%;
    padding: 18px;
    font-size: 17px;
}

/* Contact info box */
.leh-contact-box {
    margin-top: 48px;
    padding: 40px;
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 16px;
    text-align: center;
}

.leh-contact-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--leh-text);
}

.leh-contact-box p {
    margin-bottom: 8px;
    color: var(--leh-text-muted);
}

/* Popup */
.leh-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--leh-transition);
}

.leh-popup.leh-active {
    opacity: 1;
    visibility: visible;
}

.leh-popup-content {
    background: var(--leh-secondary);
    border: 1px solid var(--leh-border);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--leh-transition);
}

.leh-popup.leh-active .leh-popup-content {
    transform: scale(1);
}

.leh-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid var(--leh-border);
    color: var(--leh-text);
    font-size: 22px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--leh-transition);
}

.leh-popup-close:hover {
    background: var(--leh-surface);
    color: var(--leh-accent-light);
}

.leh-popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--leh-accent-light);
}

.leh-popup-text {
    font-size: 16px;
    color: var(--leh-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Footer */
.leh-footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--leh-border);
    margin-top: 40px;
}

.leh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.leh-footer-brand .leh-logo-text {
    font-size: 20px;
    margin-bottom: 12px;
}

.leh-footer-desc {
    font-size: 15px;
    color: var(--leh-text-muted);
    line-height: 1.6;
}

.leh-footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--leh-accent-light);
    margin-bottom: 20px;
}

.leh-footer-list {
    list-style: none;
}

.leh-footer-list li {
    margin-bottom: 10px;
}

.leh-footer-link {
    color: var(--leh-text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.leh-footer-link:hover {
    color: var(--leh-accent-light);
}

.leh-footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--leh-border);
    text-align: center;
}

.leh-footer-copy {
    font-size: 14px;
    color: var(--leh-text-muted);
}

@media (max-width: 991px) {
    .leh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .leh-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Top bars page - full width cards */
.leh-topbars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

@media (max-width: 768px) {
    .leh-topbars-grid {
        grid-template-columns: 1fr;
    }
}

.leh-topbars-card {
    display: grid;
    /* grid-template-columns: 320px; */
    gap: 0;
    background: var(--leh-surface);
    border: 1px solid var(--leh-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--leh-transition);
}

.leh-topbars-card:hover {
    border-color: var(--leh-accent);
    box-shadow: var(--leh-shadow);
}

.leh-topbars-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
}

.leh-topbars-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--leh-secondary);
}

.leh-topbars-card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: rgba(6, 26, 26, 0.9);
    border-radius: 10px;
    font-weight: 700;
    color: var(--leh-accent-light);
}

.leh-topbars-card-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .leh-topbars-card {
        grid-template-columns: 1fr;
    }
}
