/* EpicSpinFlow - Unique Design System */
:root {
    --esf-primary: #1a1a2e;
    --esf-secondary: #16213e;
    --esf-accent: #e94560;
    --esf-gold: #f5a623;
    --esf-text: #f4f4f4;
    --esf-text-light: #b8b8b8;
    --esf-bg-dark: #0f0f1e;
    --esf-bg-light: #1e1e3f;
    --esf-border: #2a2a4a;
    --esf-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
    --esf-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --esf-shadow-hover: 0 15px 50px rgba(233, 69, 96, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--esf-bg-dark);
    color: var(--esf-text);
    line-height: 1.6;
    background-image: url('images/background1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.85);
    z-index: -1;
}

.esf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.esf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--esf-border);
    transition: all 0.3s ease;
}

.esf-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.esf-logo {
    text-decoration: none;
    color: var(--esf-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.esf-logo:hover {
    color: var(--esf-accent);
}

.esf-nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.esf-nav__link {
    text-decoration: none;
    color: var(--esf-text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.esf-nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--esf-accent);
    transition: width 0.3s ease;
}

.esf-nav__link:hover,
.esf-nav__link--active {
    color: var(--esf-text);
}

.esf-nav__link:hover::after,
.esf-nav__link--active::after {
    width: 100%;
}

.esf-nav__link--cta {
    background: var(--esf-accent);
    color: var(--esf-text);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.esf-nav__link--cta::after {
    display: none;
}

.esf-nav__link--cta:hover {
    background: #d63954;
    transform: translateY(-2px);
    box-shadow: var(--esf-shadow-hover);
}

.esf-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.esf-burger__line {
    width: 25px;
    height: 3px;
    background: var(--esf-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.esf-nav__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--esf-text);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.esf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.esf-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--esf-gradient);
    z-index: -2;
}

.esf-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.6);
    z-index: -1;
}

.esf-hero__content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.esf-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--esf-text);
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.esf-hero__subtitle {
    font-size: 1.25rem;
    color: var(--esf-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.esf-hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.esf-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.esf-btn--primary {
    background: var(--esf-accent);
    color: var(--esf-text);
}

.esf-btn--primary:hover {
    background: #d63954;
    transform: translateY(-3px);
    box-shadow: var(--esf-shadow-hover);
}

.esf-btn--secondary {
    background: transparent;
    color: var(--esf-text);
    border: 2px solid var(--esf-text);
}

.esf-btn--secondary:hover {
    background: var(--esf-text);
    color: var(--esf-bg-dark);
}

.esf-btn--outline {
    background: transparent;
    color: var(--esf-accent);
    border: 2px solid var(--esf-accent);
}

.esf-btn--outline:hover {
    background: var(--esf-accent);
    color: var(--esf-text);
}

.esf-btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.esf-btn--full {
    width: 100%;
}

/* Section Styles */
.esf-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.esf-section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(233, 69, 96, 0.2);
    color: var(--esf-accent);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.esf-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-section-subtitle {
    font-size: 1.1rem;
    color: var(--esf-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Bars Section */
.esf-featured {
    padding: 6rem 0;
    position: relative;
}

.esf-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.esf-bar-card {
    background: rgba(30, 30, 63, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--esf-border);
    backdrop-filter: blur(10px);
}

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

.esf-bar-card__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.esf-bar-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.esf-bar-card:hover .esf-bar-card__img {
    transform: scale(1.1);
}

.esf-bar-card__rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 26, 46, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.esf-bar-card__stars {
    color: var(--esf-gold);
    font-size: 0.9rem;
}

.esf-bar-card__score {
    color: var(--esf-text);
    font-weight: 700;
    font-size: 1rem;
}

.esf-bar-card__content {
    padding: 2rem;
}

.esf-bar-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--esf-text);
}

.esf-bar-card__location {
    color: var(--esf-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.esf-bar-card__description {
    color: var(--esf-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.esf-bar-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.esf-bar-card__feature {
    padding: 0.4rem 0.9rem;
    background: rgba(233, 69, 96, 0.2);
    color: var(--esf-accent);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.esf-why {
    padding: 6rem 0;
    background: rgba(15, 15, 30, 0.5);
}

.esf-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.esf-benefit {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 30, 63, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.esf-benefit:hover {
    transform: translateY(-5px);
    border-color: var(--esf-accent);
    box-shadow: var(--esf-shadow);
}

.esf-benefit__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(233, 69, 96, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esf-accent);
    transition: all 0.3s ease;
}

.esf-benefit:hover .esf-benefit__icon {
    background: var(--esf-accent);
    color: var(--esf-text);
    transform: scale(1.1);
}

.esf-benefit__icon svg {
    width: 35px;
    height: 35px;
}

.esf-benefit__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-benefit__text {
    color: var(--esf-text-light);
    line-height: 1.7;
}

@media (max-width: 500px) {
    .esf-benefit {
        padding: 1rem;
    }
}

/* Experience Section */
.esf-experience {
    padding: 6rem 0;
}

.esf-experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.esf-experience__content {
    padding-right: 2rem;
}

.esf-experience__text {
    color: var(--esf-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.esf-experience__image {
    position: relative;
}

.esf-experience__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--esf-shadow);
    height: 400px;
}

.esf-experience__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.esf-experience__image-wrapper:hover .esf-experience__img {
    transform: scale(1.05);
}

/* Testimonials Section */
.esf-testimonials {
    padding: 6rem 0;
    background: rgba(15, 15, 30, 0.5);
}

.esf-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.esf-testimonial {
    background: rgba(30, 30, 63, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--esf-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.esf-testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--esf-accent);
    box-shadow: var(--esf-shadow);
}

.esf-testimonial__rating {
    color: var(--esf-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.esf-testimonial__text {
    color: var(--esf-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
}

.esf-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.esf-testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--esf-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esf-text);
    font-weight: 700;
    font-size: 1.1rem;
}

.esf-testimonial__name {
    font-weight: 600;
    color: var(--esf-text);
    margin-bottom: 0.2rem;
}

.esf-testimonial__location {
    color: var(--esf-text-light);
    font-size: 0.9rem;
}

/* Footer */
.esf-footer {
    background: rgba(15, 15, 30, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--esf-border);
    margin-top: 4rem;
}

.esf-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.esf-footer__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-footer__text {
    color: var(--esf-text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.esf-footer__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-footer__list {
    list-style: none;
}

.esf-footer__list li {
    margin-bottom: 0.7rem;
}

.esf-footer__link {
    color: var(--esf-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.esf-footer__link:hover {
    color: var(--esf-accent);
}

.esf-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--esf-border);
}

.esf-footer__copyright {
    color: var(--esf-text-light);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .esf-burger {
        display: flex;
    }

    .esf-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 4rem 2rem 2rem;
        border-left: 1px solid var(--esf-border);
    }

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

    .esf-nav__close {
        display: block;
    }

    .esf-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .esf-nav__link {
        font-size: 1.1rem;
    }

    .esf-hero__title {
        font-size: 2.5rem;
    }

    .esf-hero__subtitle {
        font-size: 1.1rem;
    }

    .esf-section-title {
        font-size: 2.2rem;
    }

    .esf-experience__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .esf-experience__content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .esf-hero__title {
        font-size: 2rem;
    }

    .esf-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .esf-btn--large {
        width: 100%;
    }

    .esf-featured__grid {
        grid-template-columns: 1fr;
    }

    .esf-why__grid {
        grid-template-columns: 1fr;
    }

    .esf-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .esf-footer__grid {
        grid-template-columns: 1fr;
    }

    .esf-hero {
        min-height: 70vh;
    }
}

@media (max-width: 500px) {
    .esf-testimonial {
        padding: 1.5rem;
    }
}

/* Page Header */
.esf-page-header {
    padding: 5rem 0 4rem;
    text-align: center;
    background: rgba(15, 15, 30, 0.5);
    margin-top: 50px;
}

.esf-page-header__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-page-header__subtitle {
    font-size: 1.2rem;
    color: var(--esf-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.esf-contact {
    padding: 4rem 0;
}

.esf-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.esf-contact__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--esf-text);
}

.esf-contact__text {
    color: var(--esf-text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.esf-contact__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.esf-contact__detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--esf-text);
}

.esf-contact__detail-text {
    color: var(--esf-text-light);
    font-size: 1.05rem;
}

.esf-contact__form-wrapper {
    background: rgba(30, 30, 63, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--esf-border);
    backdrop-filter: blur(10px);
}

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

.esf-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--esf-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.esf-form-input,
.esf-form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(15, 15, 30, 0.6);
    border: 1px solid var(--esf-border);
    border-radius: 10px;
    color: var(--esf-text);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.esf-form-input:focus,
.esf-form-textarea:focus {
    outline: none;
    border-color: var(--esf-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.esf-form-input::placeholder,
.esf-form-textarea::placeholder {
    color: var(--esf-text-light);
}

/* Popup */
.esf-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.esf-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.esf-popup__content {
    position: relative;
    background: rgba(30, 30, 63, 0.98);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--esf-border);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: var(--esf-shadow);
}

.esf-popup.active .esf-popup__content {
    transform: scale(1);
}

.esf-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--esf-text);
    font-size: 2rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.esf-popup__close:hover {
    background: rgba(233, 69, 96, 0.2);
    color: var(--esf-accent);
}

.esf-popup__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--esf-text);
}

.esf-popup__text {
    color: var(--esf-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* About Content */
.esf-about-content {
    padding: 4rem 0;
}

.esf-about-content__grid {
    max-width: 900px;
    margin: 0 auto;
}

.esf-about-content__text {
    background: rgba(30, 30, 63, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--esf-border);
    backdrop-filter: blur(10px);
}

.esf-about-content__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--esf-text);
}

.esf-about-content__heading:first-child {
    margin-top: 0;
}

.esf-about-content__paragraph {
    color: var(--esf-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .esf-page-header__title {
        font-size: 2.2rem;
    }

    .esf-contact__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .esf-page-header {
        padding: 5rem 0 3rem;
    }

    .esf-page-header__title {
        font-size: 1.8rem;
    }

    .esf-page-header__subtitle {
        font-size: 1rem;
    }

    .esf-contact__form-wrapper {
        padding: 2rem;
    }

    .esf-about-content__text {
        padding: 2rem;
    }

    .esf-about-content__heading {
        font-size: 1.6rem;
    }
}
