/* ============================================
   1. VARIABLES & BASE SETTINGS
   ============================================ */
:root {
    --primary: #87CEEB;
    --primary-dark: #000090;
    --secondary: #0dccfc;
    --accent: #0dccfc82;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --text: #f8f9fa;
    --text-muted: #adb5bd;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   2. SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   3. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-primary:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 230, 109, 0.3);
}
.btn-primary:hover::before { width: 100%; }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

/* Glow effect */
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-glow:hover::after { opacity: 1; }

/* Shine sweep */
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}
.btn-shine:hover::before { left: 100%; }

/* ============================================
   4. NAVIGATION
   ============================================ */
.floating-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 60px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 1000;
}

.floating-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 14px 8px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}
.floating-nav .nav-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.floating-nav .nav-link:hover { color: rgba(255, 255, 255, 0.7); }
.floating-nav .nav-link:hover i { transform: translateY(-1px); }
.floating-nav .nav-link.active { color: var(--primary, #ff6b6b); }
.floating-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary, #ff6b6b);
    box-shadow: 0 0 8px var(--primary, #ff6b6b);
}

.floating-nav .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary, #ff6b6b), var(--primary-dark, #ee5a24));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.25);
    margin-left: 4px;
}
.floating-nav .nav-cta i { font-size: 12px; }
.floating-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 4px;
    flex-shrink: 0;
}
.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
/* ---- NAV LOGO (Overriding global img rules) ---- */
.floating-nav .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;        /* Strict width box */
    height: 54px;       /* Strict height box */
    flex-shrink: 0;
    margin-right: 4px;  /* Gap between logo and Home button */
    overflow: hidden;   /* Failsafe: cuts off anything that escapes */
}

.floating-nav .nav-logo img {
    width: 55px !important;      /* Force exact width */
    height: 55px !important;     /* Force exact height */
    max-width: 55px !important;  /* Defeat your global img rule */
    max-height: 55px !important; /* Defeat your global img rule */
    object-fit: contain !important;
    display: block !important;
}
/* ---- MOBILE MENU LOGO ---- */
.mobile-menu .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers it horizontally */
    width: 100%;
    padding: 60px 0 60px; /* Pushes it down slightly from the very top edge */
}

.mobile-menu .nav-logo img {
    width: 150px !important;       /* Forces exact size */
    height: 150px !important;      /* Forces exact size */
    max-width: 150px !important;   /* Beats the global img rule */
    max-height: 150px !important;  /* Beats the global img rule */
    object-fit: contain !important;
    display: block !important;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--dark, #0b0b0c);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}
.mobile-close:hover {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    color: var(--primary, #ff6b6b);
}

.mobile-menu-inner {
    padding: 0px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}
.mobile-menu.active .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.mobile-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding-left: 26px;
}
.mobile-link:hover i { opacity: 1; color: var(--primary, #ff6b6b); }

.mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-link:nth-child(7) { transition-delay: 0.35s; }

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary, #ff6b6b), var(--primary-dark, #ee5a24));
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.25);
    opacity: 0;
    transform: translateX(30px);
}
.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.35);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 5px;
    padding-bottom: 0;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; z-index: 2; flex: 1; }

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease 0.2s both;
}
.hero-title span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 0.6s both;
}

.hero-visuals {
    position: relative;
    width: 50%;
    height: 75vh;
    flex-shrink: 0;
    perspective: 1000px;
}

.v-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    filter: brightness(0.8) saturate(1.1);
}
.v-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v-1 { width: 65%; height: 85%; bottom: 0; right: 0; transform: rotate(-4deg); z-index: 1; animation: floatA 8s ease-in-out infinite; }
.v-2 { width: 55%; height: 55%; top: 0; left: 0; transform: rotate(6deg); z-index: 2; animation: floatB 10s ease-in-out infinite; }
.v-3 { width: 40%; height: 45%; top: 25%; left: 25%; transform: rotate(-10deg); z-index: 4; border: 4px solid rgba(255,255,255,0.1); animation: floatC 7s ease-in-out infinite; }
.v-4 { width: 30%; height: 35%; top: -5%; right: 5%; transform: rotate(12deg); z-index: 3; animation: floatA 9s ease-in-out infinite reverse; }
.v-5 { width: 40%; height: 40%; bottom: -10%; left: -5%; transform: rotate(-15deg); z-index: 0; animation: floatB 12s ease-in-out infinite reverse; }
.v-6 { width: 22%; height: 25%; bottom: 15%; right: 25%; transform: rotate(8deg); z-index: 5; animation: floatC 6s ease-in-out infinite reverse; }

.tape-strip {
    position: absolute;
    width: 80px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-visuals:hover .v-1 { transform: rotate(-6deg) translate(-10px, 10px); }
.hero-visuals:hover .v-2 { transform: rotate(8deg) translate(10px, -10px); }
.hero-visuals:hover .v-3 { transform: rotate(-12deg) translate(0px, -15px); }
.hero-visuals:hover .v-4 { transform: rotate(15deg) translate(5px, 5px); }
.hero-visuals:hover .v-card { filter: brightness(0.5) blur(1px); }

.v-card:hover {
    filter: brightness(1.1) saturate(1.2) blur(0px) !important;
    transform: rotate(0deg) scale(1.15) translateZ(50px) !important;
    z-index: 100 !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 107, 107, 0.2);
}
.v-card:hover img { transform: scale(1.1); }

.scattered-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.scatter-img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0.12;
    filter: blur(4px) saturate(1.8);
    transition: all 1s ease;
}
.s1 { width: 25%; top: 5%; left: -5%; transform: rotate(-12deg); animation: drift1 18s ease-in-out infinite; }
.s2 { width: 18%; top: 55%; left: 25%; transform: rotate(8deg); animation: drift2 22s ease-in-out infinite; }
.s3 { width: 28%; bottom: 5%; right: -8%; transform: rotate(15deg); animation: drift1 20s ease-in-out infinite reverse; }
.s4 { width: 15%; top: 10%; right: 20%; transform: rotate(-5deg); animation: drift2 15s ease-in-out infinite reverse; }
.s5 { width: 20%; bottom: 15%; left: 5%; transform: rotate(10deg); animation: drift1 25s ease-in-out infinite; }

.hero-marquee {
    margin-top: auto;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollMarquee 20s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    transition: color 0.3s;
}
.marquee-track span.dot { font-size: 14px; color: var(--primary); opacity: 0.5; }
.hero-marquee:hover .marquee-track span { color: rgba(255, 255, 255, 0.1); }
.hero-marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================
   6. GALLERY SHOP SECTION
   ============================================ */
.section-header { text-align: center; margin-bottom: 50px; }

.section-tag {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.6s ease;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 4;
    pointer-events: none;
}
.gallery-card:hover .shine-effect { left: 150%; transition: left 0.8s ease-in-out; }

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 3;
    transition: background 0.5s ease;
}
.gallery-card-overlay h3,
.gallery-card-overlay p,
.gallery-card-overlay .price {
    filter: blur(5px);
    opacity: 0.8;
    font-weight: normal;
    transition: all 0.4s ease;
}
.gallery-card-overlay h3 { font-size: 18px; margin-bottom: 5px; color: #fff; }
.gallery-card-overlay p { font-size: 14px; color: #ccc; margin-bottom: 8px; }
.gallery-card-overlay .price { font-size: 18px; color: #fff; }

.gallery-card:hover::before { opacity: 1; }
.gallery-card:hover .gallery-card-overlay { background: linear-gradient(transparent, rgba(0, 0, 0, 0.0)); }
.gallery-card:hover .gallery-card-overlay h3,
.gallery-card:hover .gallery-card-overlay p,
.gallery-card:hover .gallery-card-overlay .price {
    filter: blur(0px);
    opacity: 1;
    font-weight: 700;
}
.gallery-card:hover .gallery-card-overlay .price { color: var(--accent); }

/* ============================================
   7. HIRE SECTION
   ============================================ */
.hire {
    padding: 10px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hire-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hire-bg-img {
    position: absolute;
    width: 70%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    filter: blur(1px) grayscale(2%);
}
.hb-left { top: 0; left: -15%; }
.hb-right { bottom: 0; right: -15%; }

.hire .container { position: relative; z-index: 2; }

.hire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    align-items: center;
}

.hire-card {
    position: relative;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hire-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-size: cover;
    background-position: center top;
    filter: blur(10px) brightness(0.4) saturate(1.3);
    z-index: 0;
    transition: all 0.5s ease;
}
.hire-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background-size: cover;
    background-position: center top;
    background-color: rgba(26, 26, 46, 0.6);
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    transition: all 0.5s ease;
}

.hire-card:nth-child(1)::before, .hire-card:nth-child(1)::after { background-image: url('https://images.pexels.com/photos/230290/pexels-photo-230290.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }
.hire-card:nth-child(2)::before, .hire-card:nth-child(2)::after { background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }
.hire-card:nth-child(3)::before, .hire-card:nth-child(3)::after { background-image: url('https://images.pexels.com/photos/3775534/pexels-photo-3775534.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }
.hire-card:nth-child(4)::before, .hire-card:nth-child(4)::after { background-image: url('https://images.pexels.com/photos/190819/pexels-photo-190819.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }
.hire-card:nth-child(5)::before, .hire-card:nth-child(5)::after { background-image: url('https://images.pexels.com/photos/291762/pexels-photo-291762.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }
.hire-card:nth-child(6)::before, .hire-card:nth-child(6)::after { background-image: url('https://images.pexels.com/photos/3831786/pexels-photo-3831786.jpeg?auto=compress&cs=tinysrgb&w=800&h=600&fit=crop'); }

.hire-card-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}
.hire-card h3 { position: relative; z-index: 2; font-size: 18px; font-weight: 600; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hire-card p { position: relative; z-index: 2; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

.hire-card:nth-child(2),
.hire-card:nth-child(4),
.hire-card:nth-child(6) { transform: translateY(35px); }

.hire-card:hover {
    border-color: rgba(135, 206, 235, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(135, 206, 235, 0.15);
}
.hire-card:hover::before { filter: blur(6px) brightness(0.5) saturate(1.5); }
.hire-card:hover::after { height: 65%; }
.hire-card:hover .hire-card-icon { transform: scale(1.1) rotate(5deg); }
.hire-card:nth-child(2):hover, .hire-card:nth-child(4):hover, .hire-card:nth-child(6):hover { transform: translateY(25px) scale(1.02); }
.hire-card:nth-child(1):hover, .hire-card:nth-child(3):hover, .hire-card:nth-child(5):hover { transform: translateY(-8px) scale(1.02); }

/* ============================================
   8. CUSTOM SECTION
   ============================================ */
.custom {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    position: relative;
    overflow: hidden;
}

.custom-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.custom-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 107, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(78, 205, 196, 0.3), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 107, 107, 0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200px 200px;
    animation: driftParticles 15s linear infinite;
    opacity: 0.6;
}

.custom-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: glowMove 10s ease-in-out infinite alternate;
}

.custom-card-content { position: relative; z-index: 1; }

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.custom-steps {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.step-connector {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3), transparent);
    z-index: 0;
}

.custom-step {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.custom-step:hover { transform: translateY(-5px); }

.custom-step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}
.custom-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}
.step-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    animation: glowPulse 3s infinite;
}
.custom-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; position: relative; }
.custom-step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   9. PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.portfolio-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.deco-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
}
.deco-orb-1 { width: 500px; height: 500px; background: rgba(255, 107, 107, 0.07); top: -200px; right: -150px; animation: floatOrb 16s ease-in-out infinite alternate; }
.deco-orb-2 { width: 450px; height: 450px; background: rgba(78, 205, 196, 0.06); bottom: -150px; left: -150px; animation: floatOrb 13s ease-in-out infinite alternate-reverse; }
.deco-orb-3 { width: 350px; height: 350px; background: rgba(167, 139, 250, 0.05); top: 40%; left: 40%; animation: floatOrb 19s ease-in-out infinite alternate; }

.portfolio .container { position: relative; z-index: 1; }

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}
.filter-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    font-weight: 600;
}
.filter-icon { font-size: 12px; opacity: 0.7; transition: opacity 0.3s; }
.filter-btn.active .filter-icon { opacity: 1; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
    margin-bottom: 50px;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 4;
    pointer-events: none;
    transition: border-color 0.4s ease;
}
.portfolio-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px var(--cat-glow, rgba(255, 107, 107, 0.1));
}
.portfolio-item:hover::after { border-color: var(--cat-color, rgba(255, 255, 255, 0.12)); }
.portfolio-item.hidden { display: none; }
.portfolio-item.filter-animate { animation: filterIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.item-number {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    z-index: 3;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: Georgia, 'Times New Roman', serif;
}
.portfolio-item:hover .item-number {
    color: rgba(255, 255, 255, 0.12);
    transform: translate(-4px, -4px) scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: saturate(0.9) contrast(1.02);
}
.portfolio-item:hover img { transform: scale(1.08); filter: saturate(1.1) contrast(1.05); }

.item-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.item-overlay-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.88) 100%);
    clip-path: polygon(
        0% 52%, 3% 46%, 6% 54%, 9% 45%, 12% 53%, 15% 47%,
        18% 55%, 21% 44%, 24% 52%, 27% 46%, 30% 54%,
        33% 45%, 36% 51%, 39% 47%, 42% 55%, 45% 44%,
        48% 53%, 51% 46%, 54% 54%, 57% 44%, 60% 52%,
        63% 47%, 66% 55%, 69% 45%, 72% 51%, 75% 47%,
        78% 55%, 81% 44%, 84% 52%, 87% 46%, 90% 54%,
        93% 45%, 96% 51%, 100% 48%,
        100% 100%, 0% 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}
.portfolio-item:hover .item-overlay-bg { opacity: 1; }

.overlay-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}
.portfolio-item:hover .overlay-content { transform: translateY(0); opacity: 1; }

.item-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tag-bg, linear-gradient(135deg, var(--primary), var(--accent)));
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.item-tag i { font-size: 10px; }
.overlay-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: #fff; letter-spacing: -0.2px; }
.overlay-content p { font-size: 14px; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }

.item-action {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    z-index: 5;
    transform: scale(0) rotate(-90deg);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}
.portfolio-item:hover .item-action { transform: scale(1) rotate(0deg); }
.item-action:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.1) rotate(0deg) !important; }

.portfolio-cta { text-align: center; }
.portfolio-cta .btn { display: inline-flex; align-items: center; gap: 10px; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 85vw;
    max-height: 85vh;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-content { transform: scale(1) translateY(0); }

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-info {
    text-align: center;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}
.lightbox.active .lightbox-info { opacity: 1; transform: translateY(0); }

.lightbox-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--dark);
}
.lightbox-info h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.lightbox-info p { font-size: 15px; color: rgba(255, 255, 255, 0.5); }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 2px;
    z-index: 10;
}

/* ============================================
   10. STORIES SECTION
   ============================================ */
.stories { padding: 80px 0; background: linear-gradient(135deg, var(--dark), var(--dark-light)); position: relative; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }

.story-card {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.story-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }

.story-card-image { position: relative; height: 200px; }
.story-card-image img { width: 100%; height: 100%; object-fit: cover; }
.story-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: var(--transition);
}
.story-card:hover .story-card-play { transform: translate(-50%, -50%) scale(1.1); background: var(--primary); }

.story-card-content { padding: 20px; }
.story-card-tag {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.story-card-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.story-card-content p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.story-card-date { font-size: 12px; color: var(--text-muted); }

.stories-cta { text-align: center; padding-top: 50px; }
.stories-cta .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 12px; font-size: 14px; font-weight: 500; }

/* ============================================
   11. SOCIAL SECTION
   ============================================ */
.social {
    padding: 100px 0 80px;
    background: var(--dark, #0b0b0c);
    position: relative;
    overflow: visible;
    overflow-x: clip;
    overflow-y: visible;
}
.social::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,107,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.social > .container { position: relative; z-index: 1; }

.social-header { text-align: center; margin-bottom: 40px; }
.social-header .section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255,107,107,0.1);
    color: var(--primary, #ff6b6b);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.social-header .section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
.social-header .section-title span {
    background: linear-gradient(135deg, var(--primary, #ff6b6b), #ff8e53, var(--primary-dark, #ee5a24));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.social-header .section-desc { font-size: 16px; color: var(--text-muted, #888); max-width: 600px; margin: 0 auto 8px; line-height: 1.6; }

.social-live { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--primary, #ff6b6b); font-weight: 500; margin-top: 8px; }
.social-live .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary, #ff6b6b); animation: pulse 2s ease-in-out infinite; }

.social-search { max-width: 420px; margin: 0 auto 32px; position: relative; }
.social-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.social-search input::placeholder { color: rgba(255,255,255,0.3); }
.social-search input:focus { border-color: var(--primary, #ff6b6b); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 3px rgba(255,107,107,0.1); }
.social-search .search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.3); font-size: 15px; pointer-events: none; }

.social-tabs-wrapper { margin-bottom: 36px; position: relative; }
.social-tabs-wrapper::before,
.social-tabs-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
.social-tabs-wrapper::before { left: 0; background: linear-gradient(to right, var(--dark, #0b0b0c), transparent); }
.social-tabs-wrapper::after { right: 0; background: linear-gradient(to left, var(--dark, #0b0b0c), transparent); }
.social-tabs-wrapper[data-fade-left="true"]::before { opacity: 1; }
.social-tabs-wrapper[data-fade-right="true"]::after { opacity: 1; }

.social-tabs-track { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth; }
.social-tabs-track::-webkit-scrollbar { display: none; }
.social-tabs { display: flex; gap: 8px; justify-content: flex-start; flex-wrap: nowrap; min-width: max-content; padding: 4px 20px; }

.social-tabs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(11,11,12,0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.social-tabs-arrow:hover { background: var(--primary, #ff6b6b); border-color: var(--primary, #ff6b6b); box-shadow: 0 4px 15px rgba(255,107,107,0.3); }
.social-tabs-wrapper[data-fade-left="true"] .social-tabs-arrow--left { opacity: 1; pointer-events: auto; }
.social-tabs-wrapper[data-fade-right="true"] .social-tabs-arrow--right { opacity: 1; pointer-events: auto; }
.social-tabs-arrow--left { left: -6px; }
.social-tabs-arrow--right { right: -6px; }

.social-tabs-edge { position: absolute; top: 0; bottom: 0; width: 70px; z-index: 1; pointer-events: none; }
.social-tabs-edge--left { left: 0; }
.social-tabs-edge--right { right: 0; }

.social-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
    user-select: none;
    flex-shrink: 0;
}
.social-tab:hover { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
.social-tab.active { background: linear-gradient(135deg, var(--primary, #ff6b6b), var(--primary-dark, #ee5a24)); color: #fff; border-color: transparent; box-shadow: 0 4px 15px rgba(255,107,107,0.3); }
.social-tab .tab-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: rgba(255,255,255,0.1); font-size: 11px; font-weight: 600; }
.social-tab.active .tab-count { background: rgba(255,255,255,0.25); }

.social-results { text-align: center; margin-bottom: 24px; font-size: 13px; color: var(--text-muted, #666); min-height: 20px; transition: opacity 0.3s; }
.social-results span { color: var(--primary, #ff6b6b); font-weight: 600; }

.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 16px; }

.social-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 22px 16px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    cursor: default;
    overflow: hidden;
}
.social-card::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: all 0.4s ease; }
.social-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-color, var(--primary, #ff6b6b));
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px var(--brand-glow, rgba(255,107,107,0.15));
    background: rgba(255,255,255,0.05);
}
.social-card:hover::before { left: 5%; right: 5%; background: linear-gradient(90deg, transparent, var(--brand-color, var(--primary, #ff6b6b)), transparent); height: 2px; }

.social-card-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 18px; color: #fff; transition: all 0.4s ease; position: relative; }
.social-card:hover .social-card-icon { transform: scale(1.1) rotate(-3deg); box-shadow: 0 4px 20px var(--brand-glow, rgba(255,107,107,0.3)); }
.letter-icon { font-size: 18px; font-weight: 700; line-height: 1; font-family: 'Inter', sans-serif; }

.social-card h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; letter-spacing: -0.01em; }
.social-card .social-handle { font-size: 12px; color: var(--text-muted, #666); margin-bottom: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-card .follow-btn { display: inline-block; padding: 7px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.02em; }
.social-card:hover .follow-btn { color: #fff; background: var(--brand-color, var(--primary, #ff6b6b)); border-color: var(--brand-color, var(--primary, #ff6b6b)); box-shadow: 0 4px 15px var(--brand-glow, rgba(255,107,107,0.3)); }
.social-card .card-category { position: absolute; top: 8px; right: 10px; font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.15); font-weight: 600; transition: color 0.3s; }
.social-card:hover .card-category { color: var(--brand-color, rgba(255,107,107,0.4)); }

.social-card.card-hidden { display: none; }
.social-card.card-visible { animation: cardReveal 0.45s ease forwards; }

.social-empty { display: none; text-align: center; padding: 60px 20px; grid-column: 1 / -1; }
.social-empty.show { display: block; }
.social-empty .empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.2; }
.social-empty h4 { font-size: 18px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.social-empty p { font-size: 14px; color: rgba(255,255,255,0.2); }

.social-footer { text-align: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.social-footer p { font-size: 14px; color: var(--text-muted, #555); line-height: 1.6; }
.social-footer a { color: var(--primary, #ff6b6b); text-decoration: none; transition: opacity 0.3s; }
.social-footer a:hover { opacity: 0.8; }

.social .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.social .reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   12. FOOTER SECTION
   ============================================ */
.footer { padding: 40px 0; background: var(--dark-light); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-muted); }
.footer-social a:hover { background: var(--primary); color: white; }

/* ============================================
   13. KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes floatB {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(12px) rotate(8deg); }
}

@keyframes floatC {
    0%, 100% { transform: translateY(0) rotate(-10deg) scale(1); }
    50% { transform: translateY(-10px) rotate(-8deg) scale(1.02); }
}

@keyframes drift1 {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(-25px) rotate(-8deg); }
}

@keyframes drift2 {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(20px) rotate(12deg); }
}

@keyframes driftParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

@keyframes glowMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(100px, 50px) scale(1.2); opacity: 0.8; }
    100% { transform: translate(200px, 100px) scale(1); opacity: 0.6; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -25px) scale(1.06); }
    66% { transform: translate(-25px, 30px) scale(0.94); }
    100% { transform: translate(15px, 10px) scale(1.03); }
}

@keyframes filterIn {
    from { opacity: 0; transform: scale(0.92) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   14. RESPONSIVE - TABLET (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {
    .hero-grid { flex-direction: column; text-align: center; gap: 40px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-visuals { width: 100%; height: 45vh; order: -1; }
    .v-1 { width: 60%; height: 90%; transform: rotate(-2deg); }
    .v-2 { width: 50%; height: 55%; transform: rotate(3deg); }
    .v-3 { width: 35%; height: 40%; transform: rotate(-5deg); left: 35%; }
    .v-4 { width: 25%; height: 30%; transform: rotate(6deg); }
    .v-5, .v-6 { display: none; }
    .hero-visuals:hover .v-card { transform: none; }
    .v-card:hover { transform: scale(1.05) !important; }
    .s2, .s4 { display: none; }
    .scatter-img { opacity: 0.08; filter: blur(5px) saturate(1.5); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-card { height: 320px; }
    .hire-grid { grid-template-columns: repeat(2, 1fr); }
    .hire-card:nth-child(2),
    .hire-card:nth-child(4),
    .hire-card:nth-child(6) { transform: translateY(20px); }
    .hire-card:nth-child(2):hover,
    .hire-card:nth-child(4):hover,
    .hire-card:nth-child(6):hover { transform: translateY(12px) scale(1.02); }
    .stories-grid { grid-template-columns: 1fr; }
    .custom-card { padding: 40px 20px; }
    .custom-steps { flex-direction: column; align-items: center; }
    .custom-step { max-width: 100%; }
    .step-connector { top: 0; bottom: 0; left: 25px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, transparent, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3), transparent); }
    .gallery-btn { flex-direction: column; align-items: center; gap: 15px; }
    .gallery-btn a { margin: 0 !important; width: 100%; max-width: 300px; text-align: center; }

    /* Portfolio tablet */
    .portfolio { padding: 70px 0; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: 14px; }
    .portfolio-item.wide { grid-column: span 2; }
    .item-number { font-size: 44px; }
    .overlay-content h3 { font-size: 19px; }
    .deco-orb-1 { width: 350px; height: 350px; }
    .deco-orb-2 { width: 300px; height: 300px; }
    .deco-orb-3 { display: none; }
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ============================================
   14b. RESPONSIVE - NAV (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {
    .floating-nav .nav-link span { display: none; }
    .floating-nav .nav-link { padding: 12px 13px; }
    .floating-nav .nav-link.active::after { bottom: 4px; }
    .floating-nav .nav-cta span { display: none; }
    .floating-nav .nav-cta { padding: 12px 15px; margin-left: 2px; }
}

/* ============================================
   14c. RESPONSIVE - SMALL TABLET (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .social { padding: 60px 0; }
    .social-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
    .social-card { padding: 18px 12px 14px; }
    .social-card-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 12px; }
    .social-card h3 { font-size: 13px; }
    .social-card .social-handle { font-size: 11px; margin-bottom: 10px; }
    .social-card .follow-btn { padding: 6px 16px; font-size: 11px; }
    .social-tabs { justify-content: flex-start; }
}

/* ============================================
   14d. RESPONSIVE - MOBILE (max-width: 640px)
   ============================================ */
@media (max-width: 640px) {
    .floating-nav {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        border-radius: 50px;
        padding: 6px 8px;
        gap: 0;
        justify-content: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
        margin-bottom: env(safe-area-inset-bottom, 0px);
    }
    .floating-nav .nav-link { display: none; }
    .floating-nav .nav-link[data-section="home"] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 10px 18px;
        border-radius: 14px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 9px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    .floating-nav .nav-link[data-section="home"] i { font-size: 18px; }
    .floating-nav .nav-link[data-section="home"].active { color: var(--primary, #ff6b6b); }
    .floating-nav .nav-link[data-section="home"].active::after { bottom: 0px; width: 4px; height: 4px; border-radius: 50%; }
    .floating-nav .nav-cta { display: none; }
    .nav-toggle { display: flex !important; }
    .mobile-menu,
    .mobile-overlay { display: block !important; }
}

/* ============================================
   14e. RESPONSIVE - PHONE (max-width: 600px)
   ============================================ */
@media (max-width: 600px) {
    .hero-visuals { height: 35vh; }
    .v-4 { display: none; }
    .v-1 { width: 65%; height: 100%; right: 0; bottom: 0; }
    .v-2 { width: 50%; height: 60%; top: 10%; left: 0; }
    .v-3 { width: 40%; height: 45%; top: 20%; left: 30%; }
    .s3, .s5 { display: none; }
    .s1 { left: -10%; width: 40%; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 16px; }
    .btn { padding: 12px 24px; font-size: 13px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card { height: 280px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .hire-grid { grid-template-columns: 1fr; }
    .hire-card,
    .hire-card:nth-child(2),
    .hire-card:nth-child(4),
    .hire-card:nth-child(6) { transform: translateY(0); }
    .hire-card:hover,
    .hire-card:nth-child(2):hover,
    .hire-card:nth-child(4):hover,
    .hire-card:nth-child(6):hover { transform: translateY(-5px); }
    .social-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-social { justify-content: center; }
    .custom { padding: 60px 0; }
    .custom-card { padding: 30px 15px; border-radius: 18px; }
    .section-tag { padding: 6px 15px; font-size: 12px; }
    .section-title { font-size: 1.8rem; }
    .step-circle { width: 40px; height: 40px; font-size: 16px; }
    .step-connector { left: 20px; }

    /* Portfolio phone */
    .portfolio { padding: 50px 0; }
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; gap: 14px; }
    .portfolio-item.tall,
    .portfolio-item.wide { grid-row: span 1; grid-column: span 1; }
    .portfolio-item:hover { transform: translateY(-4px) scale(1); }
    .item-number { font-size: 40px; top: 10px; left: 12px; }
    .overlay-content { padding: 20px; }
    .overlay-content h3 { font-size: 17px; }
    .overlay-content p { font-size: 13px; }
    .item-tag { font-size: 10px; padding: 4px 12px; }
    .item-action { width: 36px; height: 36px; font-size: 12px; top: 12px; right: 12px; }
    .filter-btn { padding: 8px 14px; font-size: 12px; gap: 6px; }
    .filter-icon { display: none; }
    .deco-orb-1, .deco-orb-2 { display: none; }
    .lightbox-content { max-width: 95vw; }
    .lightbox-content img { max-height: 60vh; border-radius: 8px; }
    .lightbox-nav { width: 38px; height: 38px; font-size: 14px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-info h3 { font-size: 18px; }
    .lightbox-info p { font-size: 13px; }
}

/* ============================================
   14f. RESPONSIVE - SMALL PHONE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .social-card .card-category { display: none; }
}