/* --- General Setup & Variables --- */
:root {
    --primary-color: #B8860B; /* A professional gold */
    --secondary-color: #DAA520; /* A lighter, premium gold */
    --text-color: #263238; /* Dark grey, not pure black */
    --card-background: rgba(255, 255, 255, 0.75);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
    --font-family-arabic: 'Amiri', 'Noto Sans Arabic', 'Arial', sans-serif;
}

/* --- RTL Support --- */
[dir="rtl"] {
    font-family: var(--font-family-arabic);
    text-align: right;
}

[dir="rtl"] .link-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .wifi-password {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .hour-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .location-link,
[dir="rtl"] .website-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .platform-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .platform-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .info-header {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .wifi-header {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .popup-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .brand-title {
    text-align: center;
}

/* Keep store name in LTR direction even in RTL mode */
[dir="rtl"] .brand-title .title-word {
    direction: ltr !important;
    unicode-bidi: embed;
    text-align: left;
    display: inline-block;
}

[dir="rtl"] .language-selector {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-links-grid {
    flex-direction: row-reverse;
}

[dir="rtl"] .link-arrow {
    transform: translateX(10px) scaleX(-1);
}

[dir="rtl"] .social-link:hover .link-arrow {
    transform: translateX(0) scaleX(-1);
}

[dir="rtl"] .platform-arrow {
    transform: scaleX(-1);
}

[dir="rtl"] .platform-btn:hover .platform-arrow {
    transform: translateX(-5px) scaleX(-1);
}

[dir="rtl"] .contact-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .tagline-text {
    text-align: center;
}

[dir="rtl"] .wifi-network {
    text-align: right;
}

[dir="rtl"] .review-popup-message {
    text-align: right;
}

[dir="rtl"] .review-popup-title {
    text-align: center;
}

[dir="rtl"] .review-popup-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .link-button {
    flex-direction: row-reverse;
}

[dir="rtl"] .action-link .link-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .action-link .link-arrow {
    transform: translateX(10px) scaleX(-1);
}

[dir="rtl"] .action-link:hover .link-arrow {
    transform: translateX(0) scaleX(-1);
}

[dir="rtl"] .links-title {
    text-align: center;
}

[dir="rtl"] .links-grid {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-title {
    text-align: center;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #F4F8F7; /* A subtle base color */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden; /* Hide horizontal blob overflow only */
    position: relative;
}

/* --- Animated Background Blobs --- */
.background-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
}
.blob1 {
    width: 600px;
    height: 600px;
    top: -250px;
    left: -250px;
    background: rgba(218, 165, 32, 0.3); /* --secondary-color with opacity */
    animation: move-blob1 25s infinite alternate;
}
.blob2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -200px;
    background: rgba(184, 134, 11, 0.2); /* --primary-color with opacity */
    animation: move-blob2 30s infinite alternate;
}

@keyframes move-blob1 {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}
@keyframes move-blob2 {
    from { transform: rotate(0deg) translateY(30px) rotate(0deg); }
    to { transform: rotate(-360deg) translateY(30px) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes popupSlideIn {
    from { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8) translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1) translateY(0); 
    }
}

@keyframes popupSlideOut {
    from { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1) translateY(0); 
    }
    to { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8) translateY(20px); 
    }
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes overlayFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* --- Language Selector --- */
.language-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: slideIn 0.6s ease-out 0.1s forwards;
    opacity: 0;
    z-index: 2;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* --- Social Links Section --- */
.social-links-bottom {
    margin-bottom: 20px;
    animation: slideIn 0.6s ease-out 0.15s forwards;
    opacity: 0;
    z-index: 2;
}

.social-container {
    position: relative;
    padding: 20px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

/* Social Background Effects */
.social-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 30px;
}

.social-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    animation: waveMove 8s linear infinite;
}

.wave-1 {
    top: 0;
    animation-delay: 0s;
    opacity: 0.6;
}

.wave-2 {
    top: 0;
    animation-delay: -2s;
    opacity: 0.4;
}

.wave-3 {
    top: 0;
    animation-delay: -4s;
    opacity: 0.3;
}

/* Social Title */
.social-title {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.title-text {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 8px auto 0;
    border-radius: 1px;
    animation: titleLineExpand 1s ease-out 1s forwards;
    transform: scaleX(0);
}

/* Social Links Grid */
.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: socialLinkReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.social-link.instagram {
    animation-delay: 1.2s;
}

.social-link.facebook {
    animation-delay: 1.4s;
}

/* Link Background Effects */
.link-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 20px;
    overflow: hidden;
}

.link-gradient {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.link-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 10px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40px 20px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 60px 15px, rgba(255, 255, 255, 0.4), transparent);
    background-size: 80px 30px;
    animation: particleShimmer 4s ease-in-out infinite;
    opacity: 0;
}

/* Link Content */
.link-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.link-icon {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    flex-grow: 1;
}

.link-arrow {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.link-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

/* Instagram Specific Styling */
.social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
}

.social-link.instagram .link-icon {
    color: #E1306C;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(129, 52, 175, 0.15));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.2);
}

.social-link.instagram:hover .link-icon {
    color: #E1306C;
    transform: scale(1.1) rotate(5deg);
}

/* Facebook Specific Styling */
.social-link.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 103, 178, 0.1));
}

.social-link.facebook .link-icon {
    color: #1877F2;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(66, 103, 178, 0.15));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.2);
}

.social-link.facebook:hover .link-icon {
    color: #1877F2;
    transform: scale(1.1) rotate(-5deg);
}

/* Hover Effects */
.social-link:hover .link-gradient {
    left: 100%;
}

.social-link:hover .link-particles {
    opacity: 1;
}

.social-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.social-link:hover .link-text {
    color: var(--primary-color);
    font-weight: 600;
}

.social-link:active .link-ripple {
    width: 200px;
    height: 200px;
}

/* Social Decoration */
.social-decoration {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, 0.3);
    animation: decorationFloat 6s ease-in-out infinite;
}

.circle-1 {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 12px;
    height: 12px;
    top: 25px;
    left: 15px;
    animation-delay: 2s;
}

.circle-3 {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 30px;
    animation-delay: 4s;
    background: var(--primary-color);
    border: none;
}

/* Animations */
@keyframes waveMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

@keyframes titleLineExpand {
    to {
        transform: scaleX(1);
    }
}

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

@keyframes particleShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes decorationFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid transparent;
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    border-color: var(--primary-color);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.lang-btn.active:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.5);
}

.lang-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.lang-btn:hover i {
    transform: rotate(180deg);
}

/* --- Main Container --- */
.container {
    max-width: 680px;
    width: 100%;
    padding: 30px;
    margin: 5vh 0;
    background: var(--card-background);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeIn 0.8s ease-out forwards;
    z-index: 1; /* Ensure container is above blobs */
}

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

/* --- Profile Header --- */
.profile-header {
    animation: headerReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
    border-radius: 35px;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Header Background Effects */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 35px;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(184, 134, 11, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(218, 165, 32, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(184, 134, 11, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(218, 165, 32, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(184, 134, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    top: 20%;
    left: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 60%;
    right: 15%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: 20%;
    left: 20%;
    animation: orbFloat3 12s ease-in-out infinite;
}

/* Logo Section */
.logo-section {
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

.ring-1 {
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    animation: ringRotate1 15s linear infinite;
    border-width: 3px;
}

.ring-2 {
    width: 100px;
    height: 100px;
    top: 10px;
    left: 10px;
    animation: ringRotate2 12s linear infinite reverse;
    border-width: 2px;
    opacity: 0.7;
}

.ring-3 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    animation: ringRotate3 8s linear infinite;
    border-width: 1px;
    opacity: 0.5;
}

.logo-core {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(184, 134, 11, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: logoCore 6s ease-in-out infinite;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.logo-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: logoPulse 3s ease-in-out infinite;
    opacity: 0;
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.3), transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-title {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-word {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite, titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: -1px;
    position: relative;
}

.title-word:nth-child(1) {
    animation-delay: 0.3s, 0.5s;
}

.title-word:nth-child(2) {
    animation-delay: 0.6s, 0.8s;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 1.2s forwards;
}

.tagline-container {
    margin-top: 25px;
    position: relative;
}

.tagline-wrapper {
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: taglineSlide 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.tagline-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #546E7A;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

.tagline-accent {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: accentPulse 4s ease-in-out 2s infinite;
}

/* Header Decoration */
.header-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.deco-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 8px;
    border-radius: 1px;
    animation: decoSlide 1s ease-out forwards;
    opacity: 0;
}

.line-1 {
    animation-delay: 2s;
}

.line-2 {
    width: 20px;
    animation-delay: 2.2s;
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-left: auto;
    animation: decoSlide 1s ease-out 2.4s forwards;
    opacity: 0;
}

/* Animations */
@keyframes headerReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(120deg); }
    66% { transform: translate(-5px, 5px) rotate(240deg); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -8px) rotate(180deg); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, -12px) rotate(90deg); }
    75% { transform: translate(-8px, 8px) rotate(270deg); }
}

@keyframes ringRotate1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringRotate2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes ringRotate3 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoCore {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes logoPulse {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1.4); }
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes titleShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes underlineExpand {
    to {
        width: 120px;
    }
}

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

@keyframes accentPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

@keyframes decoSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Link Buttons --- */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    animation: slideIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

/* --- Links Section Styling --- */
.links-section {
    margin: 30px 0;
    position: relative;
}

.links-container {
    position: relative;
    padding: 40px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

/* Links Background Effects */
.links-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 25px;
}

.links-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05), transparent 70%);
    border-radius: 50%;
    animation: waveFloat 8s ease-in-out infinite;
}

.links-wave.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.links-wave.wave-2 {
    bottom: -50%;
    right: -50%;
    animation-delay: 2s;
}

.links-wave.wave-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Links Title */
.links-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.links-title .title-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.links-title .title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.links-title .title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* Links Grid */
.links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.action-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: actionLinkReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.action-link.review {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1), rgba(251, 188, 5, 0.1));
}

.action-link.location {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(66, 133, 244, 0.1));
}

/* Action Link Content */
.action-link .link-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.action-link .link-icon {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-link .link-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    flex-grow: 1;
}

.action-link .link-arrow {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.action-link .link-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

/* Review Link Specific Styling */
.action-link.review .link-icon {
    color: #EA4335;
}

.action-link.review:hover {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(251, 188, 5, 0.15));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(234, 67, 53, 0.2);
}

.action-link.review:hover .link-icon {
    color: #EA4335;
    transform: scale(1.1) rotate(5deg);
}

/* Location Link Specific Styling */
.action-link.location .link-icon {
    color: #4285F4;
}

.action-link.location:hover {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.15), rgba(66, 133, 244, 0.15));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.2);
}

.action-link.location:hover .link-icon {
    color: #4285F4;
    transform: scale(1.1) rotate(-5deg);
}

/* Hover Effects */
.action-link:hover .link-gradient {
    left: 100%;
}

.action-link:hover .link-particles {
    opacity: 1;
}

.action-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.action-link:hover .link-text {
    color: var(--text-color);
    font-weight: 600;
}

.action-link:active .link-ripple {
    width: 200px;
    height: 200px;
}

/* Links Decoration */
.links-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.links-decoration .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1), transparent 70%);
    animation: decorationFloat 6s ease-in-out infinite;
}

.links-decoration .circle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.links-decoration .circle-2 {
    width: 15px;
    height: 15px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.links-decoration .circle-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes actionLinkReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes decorationFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes particleShimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

/* Legacy link-button styles for backward compatibility */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    min-height: 80px;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(184, 134, 11, 0.8);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    z-index: -1;
}

.link-button .icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.link-button.location {
    background-image: url('public/pin-location-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.link-button.review {
    background-image: url('public/review-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.link-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(184, 134, 11, 0.25);
}

.link-button:hover::before {
    background-color: rgba(184, 134, 11, 0.6);
    backdrop-filter: blur(2px);
}

/* --- Wi-Fi Section --- */
.wifi-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    padding: 25px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 100%;
    animation: slideIn 0.6s ease-out 0.6s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.wifi-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wifi-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.wifi-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wifi-header .icon {
    color: var(--primary-color);
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.wifi-network {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}

.wifi-network strong {
    color: var(--primary-color);
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 6px;
}

.wifi-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wifi-password::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.6s;
}

.wifi-password:hover::before {
    left: 100%;
}

.wifi-password:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wifi-password span {
    font-weight: 500;
    color: var(--text-color);
}

#wifi-code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(184, 134, 11, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 1px;
}

#copy-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#copy-btn:hover::before {
    left: 100%;
}

#copy-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

#copy-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

#copy-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: inherit;
}

#copy-btn span {
    color: inherit;
}

#copy-btn:hover i {
    transform: scale(1.2);
}

/* --- Business Information Sections --- */
.business-info {
    margin-top: 15px;
    animation: slideIn 0.6s ease-out 0.7s forwards;
    opacity: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.info-header .icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Location Card Styles */
.location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-link:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* Hours Card Styles */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.hour-item .day {
    font-weight: 500;
    color: var(--primary-color);
}

.hour-item .time {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Contact Card Styles */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

/* Website Card Styles */
.website-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), #8B5A00);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.website-link:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 90, 0, 0.3);
}

/* Store Card and Review Card Styling */
.store-card .link-button,
.review-card .link-button {
    width: 100%;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 1rem;
    min-height: auto;
    background-color: rgba(184, 134, 11, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--primary-color);
    text-shadow: none;
    background-image: none;
}

.store-card .link-button:hover,
.review-card .link-button:hover {
    background-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.store-card .link-button::before,
.review-card .link-button::before {
    display: none;
}

/* --- Social Footer --- */
.social-footer { display: flex; justify-content: center; gap: 25px; margin-top: 10px; animation: slideIn 0.6s ease-out 1s forwards; opacity: 0; }
.social-footer a { color: var(--secondary-color); font-size: 1.5rem; transition: transform 0.3s ease, color 0.3s ease; }
.social-footer a:hover { color: var(--primary-color); transform: translateY(-5px); }

/* --- General Animations & Responsiveness --- */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(218, 165, 32, 0.3); }
    50% { box-shadow: 0 0 30px rgba(218, 165, 32, 0.6), 0 0 40px rgba(184, 134, 11, 0.4); }
}

@media (max-width: 600px) {
    body { padding: 10px; }
    .container { padding: 20px; }
    h1 { font-size: 1.8rem; }
    .tagline { font-size: 0.9rem; }
    .link-button { padding: 14px; font-size: 1rem;}
    .wifi-password { flex-direction: column; gap: 10px; align-items: stretch; }
    
    /* Business Info Mobile Styles */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-header h3 {
        font-size: 1rem;
    }
    
    .hour-item {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .location-link, .website-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .background-blob { filter: blur(100px); } /* Reduce blur on mobile for performance */
    .blob1 { width: 400px; height: 400px; }
    .blob2 { width: 300px; height: 300px; }
}

/* --- Review Popup Styles --- */
.review-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.review-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    animation: overlayFadeIn 0.3s ease-out forwards;
}

.review-popup-overlay.hide {
    animation: overlayFadeOut 0.3s ease-out forwards;
}

.review-popup {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-radius: 24px;
    max-width: 500px;
    width: 80%;
    max-height: 90vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px) scale(0.9);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-popup-overlay.show .review-popup {
    transform: translate(-50%, -50%) translateY(0) scale(1);
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.review-popup-overlay.hide .review-popup {
    animation: popupSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.review-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-popup-close:hover {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.review-popup-content {
    padding: 30px;
    text-align: center;
}

.review-popup-icon {
    margin-bottom: 20px;
}

.review-popup-icon i {
    font-size: 3rem;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.review-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

.review-popup-message {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.review-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.review-popup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.review-popup-btn:hover::before {
    left: 100%;
}

.review-btn {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    color: #4285F4;
    border-color: rgba(66, 133, 244, 0.2);
}

.review-btn:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(52, 168, 83, 0.15));
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
}

.review-btn i {
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.later-btn {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border-color: rgba(108, 117, 125, 0.2);
}

.later-btn:hover {
    background: rgba(108, 117, 125, 0.15);
    border-color: #6c757d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

/* Mobile Responsiveness for Review Popup */
@media (max-width: 600px) {
    .review-popup {
        margin: 10px;
        border-radius: 20px;
    }
    
    .review-popup-content {
        padding: 20px;
    }
    
    .review-popup-title {
        font-size: 1.3rem;
    }
    
    .review-popup-message {
        font-size: 0.9rem;
    }
    
    .review-popup-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .review-popup-icon i {
        font-size: 2.5rem;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup-overlay.fade-in {
    animation: overlayFadeIn 0.3s ease-out forwards;
}

.popup-overlay.fade-out {
    animation: overlayFadeOut 0.3s ease-out forwards;
}

.popup-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.popup-content.slide-in {
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-content.slide-out {
    animation: popupSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.2);
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-title i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.review-platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.platform-btn:hover::before {
    left: 100%;
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icon {
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.platform-text {
    font-size: 1rem;
    font-weight: 500;
}

.platform-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.platform-btn:hover .platform-arrow {
    transform: translateX(5px);
}

/* Google Reviews */
.platform-btn.google {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    color: #4285F4;
    border-color: rgba(66, 133, 244, 0.2);
}

.platform-btn.google:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(52, 168, 83, 0.15));
    border-color: #4285F4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.2);
}

.platform-btn.google .platform-icon {
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Facebook Reviews */
.platform-btn.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 103, 178, 0.1));
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.2);
}

.platform-btn.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(66, 103, 178, 0.15));
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.2);
}

.platform-btn.facebook .platform-icon {
    color: #1877F2;
}

/* Yelp Reviews */
.platform-btn.yelp {
    background: linear-gradient(135deg, rgba(255, 28, 28, 0.1), rgba(175, 6, 6, 0.1));
    color: #FF1C1C;
    border-color: rgba(255, 28, 28, 0.2);
}

.platform-btn.yelp:hover {
    background: linear-gradient(135deg, rgba(255, 28, 28, 0.15), rgba(175, 6, 6, 0.15));
    border-color: #FF1C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 28, 28, 0.2);
}

.platform-btn.yelp .platform-icon {
    color: #FF1C1C;
}

/* TripAdvisor Reviews */
.platform-btn.tripadvisor {
    background: linear-gradient(135deg, rgba(0, 170, 102, 0.1), rgba(255, 77, 77, 0.1));
    color: #00AA66;
    border-color: rgba(0, 170, 102, 0.2);
}

.platform-btn.tripadvisor:hover {
    background: linear-gradient(135deg, rgba(0, 170, 102, 0.15), rgba(255, 77, 77, 0.15));
    border-color: #00AA66;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 170, 102, 0.2);
}

.platform-btn.tripadvisor .platform-icon {
    color: #00AA66;
}

/* Mobile Responsiveness for Popup */
@media (max-width: 600px) {
    .popup-content {
        padding: 20px;
        margin: 10px;
        border-radius: 20px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .platform-btn {
        padding: 15px 16px;
        font-size: 1rem;
    }
    
    .platform-icon {
        font-size: 1.2rem;
    }
    
    .platform-text {
        font-size: 0.9rem;
    }
}

/* Customer Appreciation Section */
.appreciation-section {
    position: relative;
    background: transparent;
    overflow: hidden;
    margin-top: 3rem;
}

.appreciation-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transform: translateY(0);
    transition: all 0.3s ease;
}



.appreciation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.appreciation-wave {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.appreciation-wave.wave-1 {
    top: -40%;
    left: -40%;
    animation-delay: 0s;
}

.appreciation-wave.wave-2 {
    top: -20%;
    right: -40%;
    animation-delay: 3s;
}

.appreciation-wave.wave-3 {
    bottom: -40%;
    left: 30%;
    animation-delay: 6s;
}

.appreciation-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.appreciation-title .title-text {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.appreciation-heading {
    background: linear-gradient(135deg, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.appreciation-title .title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.appreciation-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0;
}

.appreciation-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
}

.appreciation-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    animation: heartbeat 4s ease-in-out infinite;
}

.deco-heart.heart-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.deco-heart.heart-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.deco-heart.heart-3 {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

/* RTL Support for Appreciation Section */
[dir="rtl"] .appreciation-title,
[dir="rtl"] .appreciation-content {
    text-align: center;
}

/* Floating Language Selector */
.floating-lang-selector {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
}

.lang-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-toggle-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.lang-toggle-btn i {
    font-size: 1.2rem;
}

.current-lang {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-dropdown {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 10px;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.lang-option:last-child {
    margin-bottom: 0;
}

.lang-option:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.lang-option i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Mobile Responsiveness for Floating Language Selector */
@media (max-width: 768px) {
    .floating-lang-selector {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .lang-toggle-btn {
        width: 55px;
        height: 55px;
    }
    
    .lang-toggle-btn i {
        font-size: 1.1rem;
    }
    
    .current-lang {
        font-size: 0.65rem;
    }
    
    .lang-dropdown {
        bottom: 65px;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .floating-lang-selector {
        bottom: 1rem;
        left: 1rem;
    }
    
    .lang-toggle-btn {
        width: 50px;
        height: 50px;
    }
    
    .lang-toggle-btn i {
        font-size: 1rem;
    }
    
    .current-lang {
        font-size: 0.6rem;
    }
    
    .lang-dropdown {
        bottom: 60px;
        min-width: 140px;
        padding: 8px;
    }
    
    .lang-option {
        padding: 10px 14px;
        font-size: 0.9rem;
        gap: 10px;
    }
}

/* Mobile Responsiveness for Appreciation Section */
@media (max-width: 768px) {
    .appreciation-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .appreciation-container {
        border-radius: 20px;
        padding: 2rem 1.5rem;
    }
    
    .appreciation-title .title-text {
        font-size: 1.6rem;
    }
    
    .appreciation-message {
        font-size: 1rem;
    }
    
    .deco-heart {
        font-size: 1.2rem;
    }
}

/* Go to Top Button */
.go-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.go-to-top-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.go-to-top-btn:active {
    transform: translateY(0) scale(0.95);
}

.go-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Go to Top Button Mobile Styles */
@media (max-width: 768px) {
    .go-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .go-to-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}