/* ===================================
   Hampton Venue - Advanced Enhancements CSS
   Hero, About, and Services Sections
   =================================== */

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

/* Progress Bar */
.hero-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C5A572, #D4B68A);
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Trust Badges - PREMIUM with SPACING */
.hero-trust-badges {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 0.65rem 1.25rem;
    border-radius: 30px;
    border: 2px solid rgba(197, 165, 114, 0.4);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badgeFadeIn 0.8s ease-out 1s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(197, 165, 114, 0.3);
    border-color: rgba(197, 165, 114, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.trust-badge i {
    color: #FFD700;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.5; top: 18px; }
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

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

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   ABOUT SECTION ENHANCEMENTS
   ============================================ */

/* Timeline - PREMIUM MODERN */
.timeline-section {
	position: relative;
	padding: 3rem 0 1rem;
	background: radial-gradient(circle at top, rgba(197, 165, 114, 0.12), transparent 55%);
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem 0 1rem;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #F5E6C8, #C5A572, #B76E79);
	box-shadow: 0 0 25px rgba(197, 165, 114, 0.45);
	opacity: 0.95;
}

.timeline-item {
	position: relative;
	margin-bottom: 3.5rem;
	display: flex;
	align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-left: auto;
	text-align: left;
	padding-left: 3.25rem;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-right: auto;
	text-align: right;
	padding-right: 3.25rem;
}

.timeline-marker {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 26px;
	background: #FFFFFF;
	border: 4px solid #C5A572;
	border-radius: 999px;
	z-index: 2;
	box-shadow: 0 6px 18px rgba(197, 165, 114, 0.55);
	transition: all 0.35s ease;
}

.timeline-marker::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: radial-gradient(circle, #C5A572 0%, #B39560 100%);
}

.timeline-marker.active {
	width: 32px;
	height: 32px;
	background: #C5A572;
	border-color: #F5E6C8;
	box-shadow: 0 0 30px rgba(197, 165, 114, 0.75);
}

.timeline-content {
	width: calc(50% - 48px);
	padding: 1.85rem 2rem 1.75rem;
	background: #FFFFFF;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
	border: 1px solid rgba(197, 165, 114, 0.22);
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.timeline-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, rgba(197, 165, 114, 0.15), rgba(183, 110, 121, 0.2));
	opacity: 0.9;
}

.timeline-content:hover {
	transform: translateY(-7px) translateZ(0);
	box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
}

.timeline-year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #C5A572, #D4B68A);
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.9rem;
}

.timeline-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #1F1F1F;
	margin-bottom: 0.35rem;
}

.timeline-desc {
	color: #4A4A4A;
	font-size: 0.98rem;
	line-height: 1.7;
}

/* Video & Gallery Section */
.video-gallery-section {
    animation: fadeInUp 0.8s ease-out;
}

.video-container-enhanced {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9), rgba(62, 39, 35, 0.9)),
                url('https://images.unsplash.com/photo-1519167758481-83f29da8c38a?w=800') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.2);
    color: #C5A572;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 400px;
}

.gallery-preview-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-preview-item img {
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-more {
    background: linear-gradient(135deg, #C5A572, #B76E79);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-more a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* ============================================
   SERVICES SECTION ENHANCEMENTS
   ============================================ */

/* Pricing Cards */
.pricing-section {
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(71, 158, 237, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #479eed;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(71, 158, 237, 0.2);
    border-color: #479eed;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-featured {
    border-color: #479eed;
    box-shadow: 0 10px 30px rgba(71, 158, 237, 0.15);
    transform: scale(1.05);
}

.pricing-featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #479eed;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    border-bottom: 2px solid rgba(71, 158, 237, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    color: #479eed;
    margin-top: 0.5rem;
}

.pricing-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #479eed;
    line-height: 1;
}

.pricing-period {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-family: 'Khula', sans-serif;
    padding: 0.75rem 0;
    color: #000000;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: #479eed;
    font-size: 1rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-family: 'Khula', sans-serif;
    background: #1f4045;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #479eed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(71, 158, 237, 0.4);
}

.pricing-btn-featured {
    background: #479eed;
}

.pricing-btn-featured:hover {
    background: #03b1fa;
}

/* Why Choose Us */
.why-choose-section {
    animation: fadeInUp 0.8s ease-out;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #479eed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(71, 158, 237, 0.3);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(71, 158, 237, 0.5);
}

.why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.why-desc {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    /* Hero Trust Badges */
    .hero-trust-badges {
        bottom: 80px;
        gap: 1.5rem; /* Better spacing on tablet */
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }
    
    .trust-badge i {
        font-size: 1.5rem; /* Slightly smaller on tablet */
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        width: calc(100% - 60px);
        margin-left: 60px;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 1rem;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    /* Video & Gallery */
    .video-container-enhanced,
    .gallery-preview-grid {
        height: 300px;
    }
    
    /* Pricing */
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        display: none;
    }
    
    .hero-trust-badges {
        flex-direction: row; /* Keep horizontal on mobile */
        gap: 0.75rem;
        bottom: 70px;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        gap: 0.4rem;
    }
    
    .trust-badge i {
        font-size: 1.25rem;
    }
    
    .timeline-year {
        font-size: 1.25rem;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .video-container-enhanced {
        height: 250px;
    }
    
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-preview-item {
        height: 150px;
    }
}
