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

body {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    perspective: 800px;
}

.landing {
    text-align: center;
}

.liquid-gold-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(
        110deg,
        #8B6914 0%,
        #BF953F 15%,
        #F5E6A3 30%,
        #FFFBE6 40%,
        #F5E6A3 50%,
        #D4AF37 60%,
        #BF953F 70%,
        #8B6914 85%,
        #BF953F 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: approachUs 4.5s cubic-bezier(0.05, 0.7, 0.25, 1) forwards,
               liquidFlow 4s ease-in-out 4.5s infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    opacity: 0;
}

@keyframes approachUs {
    0% {
        opacity: 0;
        transform: translateZ(-5000px) scale(0.02);
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }
    100% {
        opacity: 1;
        transform: translateZ(0) scale(1);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    }
}

@keyframes liquidFlow {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Info Panel Title - no approach animation */
.info-panel-title {
    font-size: 20px !important;
    letter-spacing: 1px !important;
    animation: liquidFlow 4s ease-in-out infinite !important;
    opacity: 1 !important;
}

.slogan-text {
    font-size: 22px !important;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 24px;
    font-style: italic;
    letter-spacing: 1px !important;
    animation: liquidFlow 4s ease-in-out infinite !important;
    opacity: 1 !important;
}

/* CTA Buttons */
.cta-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 220px;
}

.cta-btn:active {
    transform: scale(0.97);
}

.search-cars-btn {
    background: linear-gradient(135deg, #BF953F 0%, #D4AF37 25%, #FCF6BA 50%, #D4AF37 75%, #AA771C 100%);
    background-size: 200% 200%;
    animation: liquidFlow 4s ease-in-out infinite;
    color: #1C1C1E;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-cars-btn:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.create-profile-btn {
    background: linear-gradient(135deg, #BF953F 0%, #D4AF37 25%, #FCF6BA 50%, #D4AF37 75%, #AA771C 100%);
    background-size: 200% 200%;
    animation: liquidFlow 4s ease-in-out infinite;
    color: #1C1C1E;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-profile-btn:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.manage-booking-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    text-shadow: none;
}

.manage-booking-btn:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* Clickable title */
.landing .liquid-gold-title {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.landing .liquid-gold-title:hover {
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.5));
}

/* Info Overlay */
.info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.info-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Info Panel */
.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #1C1C1E;
    z-index: 60;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.info-panel.active {
    transform: translateX(0);
}

.info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-panel-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.info-panel-close:hover {
    color: #fff;
}

.info-panel-body {
    padding: 24px 20px;
    overflow-y: auto;
    flex: 1;
}

.info-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
