:root {
    --color-dark: #0a0a0a;
    --color-gold: #ffd700;
    --color-gold-dark: #d4af37;
    --color-silver: #e8e8e8;
    --color-silver-dark: #c0c0c0;
    --gradient-luxury: linear-gradient(135deg, var(--color-gold), var(--color-silver));
    --gradient-dark: linear-gradient(135deg, var(--color-gold-dark), var(--color-silver-dark));
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-dark);
    color: white;
    line-height: 1.6;
}

/* Banner Section */
.banner {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.banner-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--color-silver);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-silver);
    font-size: 1rem;
    opacity: 0.8;
}

/* Social Gallery Styles */
.social-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-item.featured {
    position: relative;
}

.post-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

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

.profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.post-meta {
    display: flex;
    flex-direction: column;
}

.username {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.location {
    color: var(--color-silver);
    font-size: 0.8rem;
    opacity: 0.8;
}

.platform-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.post-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover .post-overlay {
    opacity: 1;
}

.overlay-stats {
    display: flex;
    gap: 2rem;
}

.overlay-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.overlay-stats .stat i {
    font-size: 1.2rem;
}

.post-footer {
    padding: 1rem;
}

.caption-text {
    color: var(--color-silver);
    font-size: 0.9rem;
}

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

.post-card.small {
    aspect-ratio: 1;
}

.post-card.small .post-image {
    aspect-ratio: 1;
}

.post-card.small .post-overlay {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    opacity: 0;
}

.post-card.small .post-overlay i {
    color: white;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.post-card.small:hover .post-overlay {
    opacity: 1;
}

.post-card.small:hover .post-overlay i {
    transform: translateY(0);
}

.story-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-luxury);
    width: 0;
    transition: width 0.3s linear;
}

.content-info {
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.content-info h3 {
    color: var(--color-silver);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insights {
    display: flex;
    gap: 1.5rem;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-silver);
}

.insight-item i {
    color: var(--color-gold);
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    color: var(--color-silver);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-silver);
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(rgba(10,10,10,0.97), rgba(10,10,10,0.97));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid var(--color-gold);
    padding: 20px;
    transform: rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(0,0,0,0.3);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: var(--color-gold);
}

.image-frame:hover::before {
    transform: rotate(0deg);
    border-color: rgba(212, 175, 55, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: rotate(0deg);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.achievement-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-gold);
    display: block;
}

/* Services Section Enhanced */
.services {
    padding: 120px 0;
    background: linear-gradient(rgba(10,10,10,0.97), rgba(10,10,10,0.97));
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    position: relative;
    padding: 2rem 0 4rem;
    margin-bottom: 2rem;
}

.creative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.15;
    filter: blur(1px);
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    font-size: 4rem;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: -2s;
    font-size: 3.5rem;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -4s;
    font-size: 3rem;
}

.services-title-wrapper {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.services-title-wrapper h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.gradient-text {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    animation: shimmerText 3s infinite;
}

.service-text {
    color: var(--color-silver);
    margin-left: 0.5rem;
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.line {
    height: 2px;
    width: 100px;
    background: var(--gradient-luxury);
    position: relative;
    animation: expandLine 1.5s ease-out forwards;
}

.diamond {
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    transform: rotate(45deg);
    position: relative;
    animation: rotateDiamond 4s linear infinite;
}

.diamond::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--color-gold);
    transform: rotate(45deg);
    animation: pulseFrame 2s ease-out infinite;
}

.services-intro {
    font-size: 1.4rem;
    color: var(--color-silver);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.highlight {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

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

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

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes rotateDiamond {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes pulseFrame {
    0% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
}

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

.services-title-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-luxury);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-silver);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--color-gold);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--color-silver);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.service-price {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: bold;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Instagram Frame */
.instagram-frame {
    margin-top: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .instagram-frame {
    opacity: 1;
    transform: translateY(0);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-luxury);
}

.instagram-preview {
    height: 200px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.instagram-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmerPreview 2s infinite;
}

.instagram-actions {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.instagram-actions i {
    color: var(--color-silver);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-actions i:hover {
    color: var(--color-gold);
    transform: scale(1.2);
}

@keyframes shimmerPreview {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(rgba(10,10,10,0.97), rgba(10,10,10,0.97));
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.portfolio-text {
    color: var(--color-silver);
    margin-left: 0.5rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-silver);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-luxury);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.platform-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 1.2rem;
    animation: badgePulse 2s infinite;
}

.platform-badge.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-badge.facebook {
    background: #1877f2;
}

.platform-badge.tiktok {
    background: #000;
}

.platform-badge i {
    color: white;
}

.content-preview {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.content-preview video,
.content-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-card:hover .content-preview video,
.content-card:hover .content-preview img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.content-card:hover .play-overlay {
    opacity: 1;
}

.content-card:hover .play-overlay i {
    transform: scale(1);
}

.story-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-luxury);
    width: 0;
    transition: width 0.3s linear;
}

.content-info {
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.content-info h3 {
    color: var(--color-silver);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insights {
    display: flex;
    gap: 1.5rem;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-silver);
}

.insight-item i {
    color: var(--color-gold);
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    color: var(--color-silver);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-silver);
    opacity: 0.8;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-small {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 3rem;
    }
    
    .instagram-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Story Circles - Modern Design */
.story-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    max-width: 1200px;
    gap: 2.5rem;
    margin: 4rem auto;
    padding: 2rem;
    perspective: 1000px;
    position: relative;
}

.story-circles::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--color-gold),
        transparent
    );
}

.story-circles::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--color-gold),
        transparent
    );
}

.story-circle {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.story-circle:hover {
    z-index: 2;
    transform: rotateY(180deg) scale(1.05);
}

.story-circle:hover ~ .story-circle {
    transform: translateX(10px);
}

.story-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.3),
        0 0 15px rgba(212, 175, 55, 0.2);
}

.story-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.2),
        rgba(255, 255, 255, 0.1),
        rgba(255, 215, 0, 0.2)
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-circle:hover .story-gradient::before {
    opacity: 1;
}

.story-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background: rgba(20, 20, 20, 0.9);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-silver);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat i {
    color: var(--color-gold);
}

.story-label {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--color-silver);
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.story-circle:hover .story-label {
    color: var(--color-gold);
    opacity: 1;
}

.story-platform-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.story-platform-icon i {
    font-size: 1rem;
}

.instagram .story-platform-icon i { color: #E1306C; }
.tiktok .story-platform-icon i { color: #69C9D0; }
.facebook .story-platform-icon i { color: #4267B2; }

.story-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 3;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform-origin: left;
    transform: scaleX(0);
}

/* Responsive layout adjustments */
@media (max-width: 1200px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .story-circle {
        width: 100px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1rem;
    }
    
    .story-circle {
        width: 90px;
        height: 130px;
    }
    
    .story-label {
        font-size: 0.8rem;
    }
}

/* Add container animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.story-circles {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Add staggered animation for story circles */
.story-circle {
    opacity: 0;
    animation: fadeInScale 0.5s ease-out forwards;
}

.story-circle:nth-child(1) { animation-delay: 0.1s; }
.story-circle:nth-child(2) { animation-delay: 0.2s; }
.story-circle:nth-child(3) { animation-delay: 0.3s; }
.story-circle:nth-child(4) { animation-delay: 0.4s; }
.story-circle:nth-child(5) { animation-delay: 0.5s; }
.story-circle:nth-child(6) { animation-delay: 0.6s; }

/* Story Hover Effects */
.story-circle:hover .progress-bar {
    animation: progress 2s linear;
}

@keyframes progress {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Story Animations */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 35px rgba(0,0,0,0.3),
            0 0 15px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 
            0 20px 45px rgba(0,0,0,0.4),
            0 0 25px rgba(212, 175, 55, 0.3);
    }
}

.story-gradient {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Section Title */
.story-section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-silver);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.story-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem auto;
}

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, rgba(10,10,10,0.97), rgba(0,0,0,1));
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.brand-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-image {
    width: 180px;
    height: 220px;
    position: relative;
    perspective: 1000px;
}

.profile-image.left {
    transform: rotate(-5deg);
}

.profile-image.right {
    transform: rotate(5deg);
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.2),
        rgba(255, 255, 255, 0.1),
        rgba(255, 215, 0, 0.2)
    );
    border-radius: 20px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Luxury Border Effect */
.image-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--color-gold),
        transparent,
        var(--color-gold)
    );
    border-radius: 22px;
    z-index: 0;
    opacity: 0.5;
    animation: borderGlow 3s linear infinite;
}

/* Hover Effects */
.profile-image:hover .image-container {
    transform: translateY(-10px) rotateY(10deg);
}

.profile-image.right:hover .image-container {
    transform: translateY(-10px) rotateY(-10deg);
}

.profile-image:hover .image-overlay {
    opacity: 1;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

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

.profile-image.left {
    animation: float 6s ease-in-out infinite;
}

.profile-image.right {
    animation: floatRight 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Glowing Border Animation */
@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Shadow Effect */
.image-container {
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 0 15px rgba(212, 175, 55, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 180px;
    }

    .profile-image.left {
        align-self: flex-start;
    }

    .profile-image.right {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 150px;
    }
}

.social-icons-container {
    position: relative;
    padding: 2rem 0;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.social-icon:hover {
    transform: translateY(-10px);
}

.social-icon:hover .icon-wrapper i {
    transform: scale(1.2);
}

.social-icon:hover .icon-bg {
    transform: rotate(45deg);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.social-icon.instagram .icon-bg {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook .icon-bg {
    background: #1877f2;
}

.social-icon.tiktok .icon-bg {
    background: #000;
}

.social-icon.youtube .icon-bg {
    background: #ff0000;
}

.follower-count {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-silver);
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.platform-name {
    font-size: 0.9rem;
    color: var(--color-silver);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover .follower-count {
    color: var(--color-gold);
}

.social-icon:hover .platform-name {
    opacity: 1;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-silver);
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.contact-item:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.copyright {
    color: var(--color-silver);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer Background Effect */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(10,10,10,0), rgba(10,10,10,0.97));
}

@media (max-width: 768px) {
    .social-icons-wrapper {
        gap: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

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

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

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

/* Social Media Particles */
.social-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: floatParticle 3s ease-out forwards;
}

.particle i {
    position: relative;
    z-index: 2;
}

.particle-count {
    font-size: 0.8rem;
    color: white;
    position: absolute;
    top: -10px;
    right: -10px;
}

.instagram-heart {
    color: #E1306C;
}

.instagram-comment {
    color: #833AB4;
}

.instagram-camera {
    color: #405DE6;
}

.tiktok-music {
    color: #EE1D52;
}

.tiktok-share {
    color: #69C9D0;
}

.tiktok-logo {
    color: white;
    text-shadow: 2px 2px #EE1D52;
}

.facebook-like {
    color: #1877F2;
}

.facebook-share {
    color: #4267B2;
}

/* Social Feature Strip */
.social-feature-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-content {
    text-align: center;
    z-index: 2;
}

.feature-count {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.feature-label {
    color: var(--color-silver);
    font-size: 0.9rem;
    opacity: 0.8;
}

.feature-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(255,215,0,0.1),
        transparent
    );
    transform-origin: bottom;
    animation: waveAnimation 3s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.2);
    }
}

/* Reaction Bubbles */
.reaction-bubbles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.reaction-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reaction-bubble::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--color-gold),
        transparent,
        var(--color-gold)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reaction-bubble:hover::before {
    opacity: 1;
    animation: rotateGradient 2s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.reaction-bubble i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.reaction-bubble:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.1);
}

.reaction-bubble:hover i {
    animation: pulseIcon 0.5s ease infinite;
}

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

/* Story Circles - Modern Design */
.story-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    max-width: 1200px;
    gap: 2.5rem;
    margin: 4rem auto;
    padding: 2rem;
    perspective: 1000px;
    position: relative;
}

.story-circles::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--color-gold),
        transparent
    );
}

.story-circles::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--color-gold),
        transparent
    );
}

.story-circle {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.story-circle:hover {
    z-index: 2;
    transform: rotateY(180deg) scale(1.05);
}

.story-circle:hover ~ .story-circle {
    transform: translateX(10px);
}

.story-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.3),
        0 0 15px rgba(212, 175, 55, 0.2);
}

.story-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.2),
        rgba(255, 255, 255, 0.1),
        rgba(255, 215, 0, 0.2)
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-circle:hover .story-gradient::before {
    opacity: 1;
}

.story-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background: rgba(20, 20, 20, 0.9);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-silver);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat i {
    color: var(--color-gold);
}

.story-label {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--color-silver);
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.story-circle:hover .story-label {
    color: var(--color-gold);
    opacity: 1;
}

.story-platform-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.story-platform-icon i {
    font-size: 1rem;
}

.instagram .story-platform-icon i { color: #E1306C; }
.tiktok .story-platform-icon i { color: #69C9D0; }
.facebook .story-platform-icon i { color: #4267B2; }

.story-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 3;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform-origin: left;
    transform: scaleX(0);
}

/* Responsive layout adjustments */
@media (max-width: 1200px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .story-circle {
        width: 100px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .story-circles {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1rem;
    }
    
    .story-circle {
        width: 90px;
        height: 130px;
    }
    
    .story-label {
        font-size: 0.8rem;
    }
}

/* Add container animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.story-circles {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Add staggered animation for story circles */
.story-circle {
    opacity: 0;
    animation: fadeInScale 0.5s ease-out forwards;
}

.story-circle:nth-child(1) { animation-delay: 0.1s; }
.story-circle:nth-child(2) { animation-delay: 0.2s; }
.story-circle:nth-child(3) { animation-delay: 0.3s; }
.story-circle:nth-child(4) { animation-delay: 0.4s; }
.story-circle:nth-child(5) { animation-delay: 0.5s; }
.story-circle:nth-child(6) { animation-delay: 0.6s; }

/* Story Hover Effects */
.story-circle:hover .progress-bar {
    animation: progress 2s linear;
}

@keyframes progress {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Story Animations */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 35px rgba(0,0,0,0.3),
            0 0 15px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 
            0 20px 45px rgba(0,0,0,0.4),
            0 0 25px rgba(212, 175, 55, 0.3);
    }
}

.story-gradient {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Section Title */
.story-section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-silver);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.story-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem auto;
}
