/* ================================================================
   CUSTOM ICON STYLES - Replacing Emojis
   ================================================================ */

/* ===== LOGO ICON ===== */
.logo-icon-custom {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #C9A84C, #A07830);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
    position: relative;
    flex-shrink: 0;
}

.logo-icon-custom::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
}

/* ===== HERO BADGE ICON ===== */
.hero-badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 0.7rem;
    margin-right: 6px;
    vertical-align: middle;
}

/* ===== SERVICE CARD ICONS ===== */
.service-icon-styled {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.service-icon-styled::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.service-icon-styled.icon-baby-birthday {
    background: linear-gradient(135deg, #FF6B9D, #C44569);
}

.service-icon-styled.icon-adult-birthday {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
}

.service-icon-styled.icon-engagement {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.service-icon-styled.icon-baby-shower {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
}

.service-icon-styled.icon-wedding {
    background: linear-gradient(135deg, #C9A84C, #A07830);
}

.service-icon-styled.icon-special {
    background: linear-gradient(135deg, #34D399, #059669);
}

/* ===== FEATURE CARD ICONS (Why Choose Us) ===== */
.feature-icon-styled {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-styled .icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-icon-styled::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 168, 76, 0.25);
    animation: featureIconSpin 15s linear infinite;
}

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

.feature-icon-styled.fi-design .icon-inner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(168, 85, 247, 0.04));
    border: 1.5px solid rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.feature-icon-styled.fi-price .icon-inner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    border: 1.5px solid rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.feature-icon-styled.fi-team .icon-inner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.feature-icon-styled.fi-time .icon-inner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    border: 1.5px solid rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.feature-icon-styled.fi-quality .icon-inner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    border: 1.5px solid rgba(201, 168, 76, 0.2);
    color: #C9A84C;
}

.feature-icon-styled.fi-satisfy .icon-inner {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.04));
    border: 1.5px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* Hover states */
.feature-card:hover .feature-icon-styled.fi-design .icon-inner {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    color: white;
    border-color: #A855F7;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

.feature-card:hover .feature-icon-styled.fi-price .icon-inner {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border-color: #22C55E;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.feature-card:hover .feature-icon-styled.fi-team .icon-inner {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    border-color: #3B82F6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.feature-card:hover .feature-icon-styled.fi-time .icon-inner {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border-color: #F59E0B;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.feature-card:hover .feature-icon-styled.fi-quality .icon-inner {
    background: linear-gradient(135deg, #C9A84C, #A07830);
    color: white;
    border-color: #C9A84C;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.feature-card:hover .feature-icon-styled.fi-satisfy .icon-inner {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    border-color: #EF4444;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

.feature-card:hover .feature-icon-styled .icon-inner {
    transform: scale(1.1) rotate(5deg);
}

/* ===== THEME TAB ICONS ===== */
.theme-tab-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    margin-right: 6px;
    vertical-align: middle;
}

.theme-tab-icon.ti-royal { background: linear-gradient(135deg, #C9A84C, #A07830); }
.theme-tab-icon.ti-elegant { background: linear-gradient(135deg, #A855F7, #7C3AED); }
.theme-tab-icon.ti-minimal { background: linear-gradient(135deg, #34D399, #059669); }
.theme-tab-icon.ti-floral { background: linear-gradient(135deg, #FB7185, #E11D48); }
.theme-tab-icon.ti-luxury { background: linear-gradient(135deg, #F59E0B, #D97706); }

.theme-tab.active .theme-tab-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== REVIEW STARS ===== */
.review-stars-styled {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars-styled .star {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* ===== GALLERY OVERLAY ICON ===== */
.gallery-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 253, 247, 0.2);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-view-icon {
    background: linear-gradient(135deg, #C9A84C, #A07830);
    border-color: #C9A84C;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

/* ===== CTA SECTION DECORATIVE ===== */
.cta-icon-decoration {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C9A84C;
    margin: 0 auto 25px;
    transform: rotate(45deg);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

.cta-icon-decoration i {
    transform: rotate(-45deg);
}

/* ===== BEFORE/AFTER LABELS ===== */
.ba-label-styled {
    position: absolute;
    bottom: 22px;
    padding: 8px 22px;
    background: rgba(255, 248, 230, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 4px 15px rgba(160, 120, 48, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2d2010;
}

.ba-label-styled i {
    font-size: 0.65rem;
    color: #C9A84C;
}

.ba-before .ba-label-styled {
    left: 22px;
}

.ba-after .ba-label-styled {
    right: 22px;
}

/* ===== PACKAGE ICONS (for packages page) ===== */
.package-icon-styled {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    position: relative;
}

.package-icon-styled::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 168, 76, 0.2);
}

.package-icon-styled.pi-silver {
    background: linear-gradient(135deg, #94A3B8, #64748B);
    color: white;
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
}

.package-icon-styled.pi-gold {
    background: linear-gradient(135deg, #C9A84C, #A07830);
    color: white;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.package-icon-styled.pi-premium {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    color: white;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}

/* ===== HERO TITLE DECORATION ===== */
.title-sparkle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    font-size: 0.9rem;
    color: #C9A84C;
    vertical-align: middle;
    margin-left: 8px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
    animation: sparkleRotate 6s linear infinite;
}

@keyframes sparkleRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg) scale(1.1); }
    100% { transform: rotate(0deg); }
}

/* ===== LOADER CENTER ICON (replaces emoji) ===== */
.loader-center-icon-styled {
    position: relative;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A84C, #A07830);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
    animation: centerPulseStyled 2.5s infinite ease-in-out;
}

.loader-center-icon-styled::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    animation: centerRingPulse 2.5s infinite ease-in-out;
}

@keyframes centerPulseStyled {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 8px 40px rgba(201, 168, 76, 0.7);
    }
}

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

/* ===== ANNIVERSARY ICON ===== */
.service-icon-styled.icon-anniversary {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

/* ================================================================
   ABOUT PAGE - STAT ICONS (Replacing Emojis)
   ================================================================ */

.stat-icon-styled {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon-styled::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 168, 76, 0.2);
    animation: statIconSpin 20s linear infinite;
}

.stat-icon-styled::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

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

/* Events Icon - Gold */
.stat-icon-styled.si-events {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    color: #C9A84C;
}

.stat-card:hover .stat-icon-styled.si-events {
    background: linear-gradient(135deg, #C9A84C, #A07830);
    color: white;
    border-color: #C9A84C;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Clients Icon - Blue */
.stat-icon-styled.si-clients {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.04));
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    color: #3B82F6;
}

.stat-card:hover .stat-icon-styled.si-clients {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    border-color: #3B82F6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Years Icon - Green */
.stat-icon-styled.si-years {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    border: 1.5px solid rgba(34, 197, 94, 0.25);
    color: #22C55E;
}

.stat-card:hover .stat-icon-styled.si-years {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border-color: #22C55E;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Awards Icon - Amber */
.stat-icon-styled.si-awards {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    color: #F59E0B;
}

.stat-card:hover .stat-icon-styled.si-awards {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border-color: #F59E0B;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* ================================================================
   ABOUT PAGE - STORY EXPERIENCE BADGE (Replacing glass-card emoji)
   ================================================================ */

.story-experience {
    position: absolute;
    top: 30px;
    right: 20px;
    padding: 22px 28px;
    text-align: center;
    background: linear-gradient(135deg, #C9A84C, #A07830) !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(160, 120, 48, 0.4) !important;
}

.story-experience .exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white !important;
    line-height: 1;
}

.story-experience .exp-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ================================================================
   ABOUT PAGE - TEAM CARD ROLE BADGE
   ================================================================ */

.team-card .team-role-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #C9A84C, #A07830);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    margin-right: 6px;
    vertical-align: middle;
    box-shadow: 0 3px 10px rgba(201, 168, 76, 0.3);
}

/* ================================================================
   HIGHLIGHT ICONS UPGRADE
   ================================================================ */

.highlight i.fa-check-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #A07830;
    flex-shrink: 0;
}

.highlight:hover i.fa-check-circle {
    background: linear-gradient(135deg, #C9A84C, #A07830);
    color: white;
    border-color: #C9A84C;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}