/* F&S Collections Silver - Premium Enhancements */

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Cream Gradient Background */
.cream-gradient {
    background: linear-gradient(180deg, #FDF8F3 0%, #F7F0E8 100%);
}

/* Badge Component */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background: rgba(201, 169, 98, 0.1);
    color: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Enhanced Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--fs-blue) 0%, var(--fs-blue-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 98, 0.08) 0%,
        rgba(250, 248, 245, 0.95) 40%,
        rgba(250, 248, 245, 0.98) 60%,
        rgba(229, 212, 161, 0.08) 100%
    );
    z-index: -1;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, var(--primary-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--primary-gold) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-image-circle {
    position: relative;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(60px);
    animation: pulse 2s ease-in-out infinite;
}

.hero-image-circle img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(201, 169, 98, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
    background: linear-gradient(160deg, var(--fs-blue-light) 0%, var(--fs-blue) 50%, var(--fs-blue-deep) 100%);
    color: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.05) 0%, transparent 50%);
    animation: statsGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    color: var(--primary-gold);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-cream);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.7);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: #F5F0E8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 20%, var(--primary-gold) 80%, transparent 100%);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    justify-content: center;
}

.testimonial-rating i {
    fill: currentColor;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #5A5A5A;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: block;
}

.testimonial-avatar {
    display: none;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: #9C9689;
}

/* Occasion Cards Enhancement */
.occasion-card {
    transition: all 0.3s;
}

.occasion-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.cta-card {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.cta-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-card .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Product Card Enhancements */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfcfb 100%);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Order Form Styles */
.order-form { margin-top: 1.25rem; background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 1rem; box-shadow: var(--shadow-sm); }
.order-form h3 { margin-bottom: .75rem; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .75rem; }
.form-group { display: flex; flex-direction: column; gap: .25rem; }
.form-group-full { grid-column: 1 / -1; }
.order-form label { font-size: .9rem; font-weight: 600; color: var(--text-dark); }
.order-form input, .order-form select, .order-form textarea { padding: .6rem .75rem; border: 1px solid var(--border-color); border-radius: 8px; font-size: .95rem; background: #fff; color: var(--text-dark); }
.order-form select { appearance: menulist; pointer-events: none; }
.order-form select { pointer-events: auto; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: none; border-color: var(--primary-gold); box-shadow: 0 0 0 3px rgba(201,169,98,0.15); }
.form-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .75rem; }
.order-form .btn { padding: .6rem 1rem; }
.order-form select option { pointer-events: auto; }

/* Form validation */
.form-error { font-size: .8rem; color: #B00020; min-height: 1em; }
.order-form input.invalid, .order-form select.invalid, .order-form textarea.invalid { border-color: #B00020; box-shadow: 0 0 0 3px rgba(176,0,32,0.12); }

/* Modal (Size Guide) */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.4); display: none; align-items: center; justify-content: center; z-index: 1000; }
.modal.open { display: flex; }
.modal-content { background: #fff; border-radius: 12px; padding: 1.25rem; width: min(640px, 92vw); box-shadow: var(--shadow-lg); position: relative; }
.modal-close { position: absolute; right: .75rem; top: .5rem; border: none; background: transparent; font-size: 1.5rem; cursor: pointer; }
.size-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .5rem; margin-top: .5rem; }
.btn-sm { padding: .4rem .7rem; font-size: .85rem; }

/* Responsive Adjustments */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
