/* ============================================
   FLOKA STUDIO - MAIN STYLESHEET
   Modern Creative Digital Agency
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #101010;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(4px);
    background: rgba(212, 175, 55, 0.05);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.15s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Gold Text & Badge */
.gold-text {
    color: #D4AF37;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: pulseGlow 3s infinite;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8960F);
    border: none;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-5px);
    border-color: #1a1a1a;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a1a, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #1e1e1e;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transition: width 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #D4AF37;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-left {
    flex: 1.2;
}

.hero-left h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555;
    max-width: 520px;
    margin: 1.5rem 0;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, #D4AF37, #B8960F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

.hero-right {
    flex: 0.9;
    text-align: center;
    position: relative;
}

.hero-right img {
    max-width: 100%;
    border-radius: 50px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
    animation: float3D 6s ease-in-out infinite;
}

.tilt-container {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Bird Marketing Banner */
.bird-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #1a1a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bird-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
    animation: rotateSlow 20s linear infinite;
}

.bird-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.02) 20px, rgba(212, 175, 55, 0.02) 40px);
    pointer-events: none;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.top-rated {
    font-size: 14px;
    letter-spacing: 4px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulseGlow 2s infinite;
}

.rotating-text-wrapper {
    min-height: 130px;
    margin-bottom: 20px;
}

.rotating-text {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.rotating-word {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    min-width: 320px;
    text-align: left;
}

.static-line {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 35px auto 0;
    line-height: 1.7;
}

.floating-particle {
    position: absolute;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: float3D 8s ease-in-out infinite;
}

.p1 { width: 200px; height: 200px; top: -50px; left: -50px; animation-delay: 0s; }
.p2 { width: 150px; height: 150px; bottom: -30px; right: -30px; animation-delay: 2s; }
.p3 { width: 100px; height: 100px; top: 40%; right: 10%; animation-delay: 4s; }

/* Approach Section */
.approach-section {
    background: #FCFAF5;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    margin-top: 3rem;
}

.approach-card {
    flex: 1;
}

.approach-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
}

.quote-card {
    border-left: 3px solid #D4AF37;
    padding-left: 30px;
}

.quote-card q {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.quote-card h4 {
    margin-top: 15px;
}

/* Skills Section */
.impressions-section {
    padding: 60px 0;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.skill-item {
    flex: 1;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 1.8rem;
    border-radius: 28px;
    transition: all 0.4s ease;
}

.skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.skill-bar-bg {
    background: #e6e6e6;
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.skill-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    transition: width 1.8s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerMove 2s infinite;
}

/* Expertise Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card-expert {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    padding: 2rem;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-expert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.6s;
}

.card-expert:hover::before {
    left: 100%;
}

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

.card-expert i {
    font-size: 3rem;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-expert:hover i {
    transform: scale(1.2) rotate(10deg);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
}

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

.card-tags {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    flex-wrap: wrap;
}

/* Fun Facts */
.funfacts-block {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    border-radius: 60px;
    margin: 30px 0 50px;
    padding: 70px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.funfacts-block h3 {
    font-size: 28px;
    margin-bottom: 50px;
    max-width: 600px;
}

.facts-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    text-align: center;
}

.fact-number {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 10px;
}

.fact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.fact-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Testimonials */
.testimonials-section {
    background: #ffffff;
}

.testimonial-scroll {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
}

.testimonial-scroll::-webkit-scrollbar {
    height: 6px;
}

.testimonial-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.testi-card {
    min-width: 360px;
    background: linear-gradient(135deg, #fafaf9, #f5f5f4);
    padding: 2rem;
    border-radius: 32px;
    scroll-snap-align: start;
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testi-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.12);
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.testi-card:hover .testi-avatar {
    transform: rotate(360deg);
}

.stars {
    color: #D4AF37;
    margin-bottom: 15px;
}

.testi-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.testi-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testi-card span {
    font-size: 13px;
    color: #888;
}

/* Contact Section */
.contact-section {
    background: #F6F4EF;
}

.contact-duo {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.contact-heading {
    font-size: 1.8rem;
    margin: 20px 0;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin: 10px 0;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 48px;
}

.contact-icon {
    width: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 16px 22px;
    border-radius: 60px;
    border: 1.5px solid #eee;
    margin: 8px 0 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

label {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

/* Team Section */
.team-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 3px solid #D4AF37;
    transition: all 0.4s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* FAQ Section */
.faq-section {
    background: #FCFAF5;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fcfcf9;
    margin-bottom: 1.2rem;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    transform: translateX(8px);
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.3rem 2rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.03);
    color: #D4AF37;
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 70px 0 40px;
    text-align: center;
}

.footer-social {
    margin-top: 1.5rem;
}

.social-icon {
    color: white;
    margin: 0 15px;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: inline-block;
}

.social-icon:hover {
    color: #D4AF37;
    transform: translateY(-8px) rotate(360deg) scale(1.2);
}

/* Animations */
@keyframes float3D {
    0%, 100% { transform: translateY(0px) translateZ(0px) rotateX(0deg); }
    50% { transform: translateY(-30px) translateZ(20px) rotateX(5deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.4); }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left h1 { font-size: 3.5rem; }
    .rotating-text, .static-line { font-size: 48px; }
    .rotating-word { min-width: 240px; }
    .section-title { font-size: 36px; }
}

@media (max-width: 880px) {
    .hero-left h1 { font-size: 2.8rem; }
    .rotating-text, .static-line { font-size: 32px; }
    .rotating-word { min-width: 200px; }
    .static-line.gold-text { font-size: 36px !important; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        transition: 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active { left: 0; }
    .menu-icon { display: block; }
    
    .funfacts-block { padding: 40px 25px; }
    .funfacts-block h3 { font-size: 22px; }
    .fact-number { font-size: 2.5rem; }
    
    .approach-grid { flex-direction: column; }
    .skills-wrapper { flex-direction: column; }
    .facts-flex { flex-direction: column; text-align: center; }
    .testi-card { min-width: 300px; }
    .team-member { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 2rem; }
    .btn-primary, .btn-outline { padding: 12px 24px; font-size: 14px; }
    .hero-stats { gap: 1.5rem; }
    .stat-item span:first-child { font-size: 1.8rem; }
    .rotating-text, .static-line { font-size: 24px; }
    .section-title { font-size: 28px; }
    .contact-duo { flex-direction: column; }
}