:root {
    --primary-yellow: #D4AF37; /* More sophisticated gold */
    --primary-black: #0A0A0A;
    --primary-white: #FFFFFF;
    --primary-gray: #F8F9FA;
    --primary-dark-gray: #2C2C2C;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-black);
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'League Spartan', sans-serif;
    color: var(--primary-white);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Simple Section Transitions */
section {
    position: relative;
    transition: all 0.6s ease-out;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease-out;
}

section.section-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

/* Sidebar Styles */


/* KPI Section */
.kpi-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px clamp(20px, 4vw, 60px) 80px;
    background: linear-gradient(to bottom, var(--primary-black), var(--primary-dark-gray));
    position: relative;
    width: 100%;
}

.kpi-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.kpi-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 60px);
    width: 100%;
    max-width: 800px;
}

.title-text {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    white-space: nowrap;
}

.highlight-word {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 20%, 
        var(--primary-yellow) 80%, 
        transparent 100%);
    position: relative;
    animation: shimmerLine 3s ease-in-out infinite;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    filter: blur(2px);
}

@keyframes shimmerLine {
    0% {
        transform: scaleX(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.8);
        opacity: 0.6;
    }
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
        transform: scale(1.02);
    }
}

.kpi-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.kpi-rectangle {
    background: linear-gradient(45deg, 
        var(--primary-yellow) 0%, 
        #FFE55C 25%, 
        var(--primary-yellow) 50%, 
        #F4D03F 75%, 
        var(--primary-yellow) 100%);
    background-size: 400% 400%;
    animation: gradientShift 4s ease-in-out infinite;
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: scale(0.5) translateY(100px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.kpi-rectangle.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.kpi-rectangle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.kpi-rectangle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(212, 175, 55, 0.8) 25%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(212, 175, 55, 0.8) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    background-size: 400% 400%;
    animation: shiningBorder 3s ease-in-out infinite;
    border-radius: 26px;
    z-index: -1;
}

.kpi-item {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.kpi-icon {
    margin-bottom: 20px;
}

.kpi-icon .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-black);
    opacity: 0.8;
}

.kpi-value {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
    line-height: 1;
}

.kpi-label {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--primary-black);
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
}

.animation-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.animated-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    margin-bottom: 40px;
    gap: 0;
}

.logo-image {
    max-width: clamp(300px, 50vw, 500px);
    height: auto;
    opacity: 0;
    transform: scale(0.5) rotateY(180deg);
    animation: logoEntrance 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.tagline {
    color: var(--primary-white);
    font-size: clamp(16px, 2.5vw, 28px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 2.2s;
    text-align: center;
    letter-spacing: 2px;
    z-index: 10;
    font-weight: 200;
    text-transform: uppercase;
    max-width: 90%;
    margin: clamp(20px, 4vw, 40px) auto 0;
}

.floating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    margin-top: clamp(15px, 3vw, 30px);
}

.text-line {
    color: var(--primary-gray);
    font-size: clamp(14px, 2vw, 20px);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.5s ease forwards;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.text-line:nth-child(1) { animation-delay: 2.8s; }
.text-line:nth-child(2) { animation-delay: 3.1s; }
.text-line:nth-child(3) { animation-delay: 3.4s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(180deg) translateY(50px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotateY(0deg) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateY(0);
    }
}

/* Elegant Particles */
.elegant-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.elegant-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.4;
    animation: elegantFloat 8s ease-in-out infinite;
}

/* Floating Ideas */
.floating-ideas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.idea-bubble {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: ideaFloat 6s ease-in-out infinite;
}

.idea-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.idea-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1.5s;
}

.idea-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

.idea-4 {
    top: 60%;
    right: 15%;
    animation-delay: 4.5s;
}

.idea-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 2s;
}

/* Communication Elements */
.communication-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.message-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0.3;
    animation: messageFlow 8s linear infinite;
}

.message-line:nth-child(1) {
    top: 25%;
    width: 40%;
    left: 30%;
    animation-delay: 0s;
}

.message-line:nth-child(2) {
    top: 50%;
    width: 60%;
    left: 20%;
    animation-delay: 2s;
}

.message-line:nth-child(3) {
    top: 75%;
    width: 35%;
    left: 35%;
    animation-delay: 4s;
}

/* Elegant Decorations */
.elegant-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 1px solid var(--primary-yellow);
    opacity: 0.2;
    animation: elegantRotate 20s linear infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    top: 15%;
    left: 10%;
}

.shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 70%;
    right: 12%;
}

.shape-3 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    bottom: 15%;
    left: 80%;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--primary-yellow) 0%, transparent 70%);
    opacity: 0;
    animation: pulseBackground 2s ease-in-out infinite;
    z-index: 1;
}

/* Elegant Animations */
@keyframes elegantFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(0);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }
}

@keyframes ideaFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(0deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) rotate(-5deg) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes messageFlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    20% {
        opacity: 0.3;
        transform: scaleX(0.3);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1);
    }
    80% {
        opacity: 0.3;
        transform: scaleX(0.7);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes elegantRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1);
        opacity: 0.2;
    }
    75% {
        transform: rotate(270deg) scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes shiningBorder {
    0% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
    25% {
        background-position: 100% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.8;
    }
    75% {
        background-position: 0% 100%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
}

@keyframes pulseBackground {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .animated-logo {
        gap: 0;
    }

    .logo-image {
        max-width: clamp(200px, 60vw, 400px);
    }

    .tagline {
        letter-spacing: 1px;
        margin-top: clamp(15px, 3vw, 25px);
    }

    .floating-text {
        flex-direction: column;
        gap: 10px;
        margin-top: clamp(10px, 2vw, 20px);
    }

    .text-line {
        font-size: clamp(12px, 4vw, 16px);
    }

    /* KPI responsive */
    .kpi-section {
        padding: 30px 15px 60px;
        min-height: auto;
    }

    .kpi-title {
        margin-bottom: 30px;
    }

    .kpi-title h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .kpi-rectangle {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .kpi-item {
        padding: 0 10px;
    }

    .kpi-icon .material-symbols-outlined {
        font-size: 36px;
    }

    /* KPI Title responsive */
    .title-content {
        gap: clamp(20px, 5vw, 40px);
    }

    .highlight-word {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    /* Reduce animations on mobile for better performance */
    .idea-bubble {
        font-size: 18px;
    }

    .floating-shape {
        display: none; /* Hide complex shapes on mobile */
    }

    .elegant-particle {
        display: none; /* Reduce particle count on mobile */
    }
}

@media (max-width: 480px) {
    .sidebar-3 {
        display: none; /* Hide sidebar on very small screens */
    }

    .logo-image {
        max-width: clamp(150px, 70vw, 300px);
    }

    .tagline {
        font-size: clamp(14px, 4vw, 18px);
        letter-spacing: 1px;
        margin-top: clamp(10px, 3vw, 20px);
    }

    .floating-text {
        margin-top: clamp(8px, 2vw, 15px);
    }

    .text-line {
        font-size: clamp(11px, 4vw, 14px);
    }

    /* KPI mobile styles */
    .kpi-section {
        padding: 20px 10px 40px;
    }

    .kpi-title {
        margin-bottom: 25px;
    }

    .kpi-title h2 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 1px;
    }

    .kpi-title h2::after {
        width: 40px;
        height: 1.5px;
    }

    .kpi-rectangle {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        border-radius: 20px;
    }

    .kpi-item {
        padding: 0;
        width: 100%;
    }

    .kpi-icon .material-symbols-outlined {
        font-size: 40px;
    }

    .kpi-value {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .kpi-label {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    /* KPI Title mobile styles */
    .title-content {
        flex-direction: column;
        gap: 20px;
    }

    .divider-line {
        width: 60%;
        height: 1px;
    }

    .highlight-word {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        letter-spacing: 1px;
    }

    /* Disable complex animations on very small screens */
    .floating-ideas,
    .communication-elements,
    .elegant-decoration {
        display: none;
    }
}

@media (min-width: 1200px) {
    .sidebar-3 {
        top: 30px;
        left: 30px;
        height: 28vh;
        min-height: 240px;
        max-height: 420px;
    }

    .logo-image {
        max-width: 450px;
    }

    .tagline {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .text-line {
        font-size: 22px;
    }
}

/* CEO Presentation Section */
.ceo-section {
    min-height: 100vh;
    padding: 100px clamp(20px, 4vw, 60px);
    background: linear-gradient(135deg, 
        var(--primary-black) 0%, 
        #1a1a1a 25%, 
        var(--primary-dark-gray) 50%, 
        #1a1a1a 75%, 
        var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

.ceo-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
    min-height: 80vh;
}

/* CEO Image Section */
.ceo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(-80px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ceo-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.ceo-image-container {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-image-placeholder {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
}

.ceo-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-yellow) 0%, 
        #FFE55C  50%, 
        var(--primary-yellow) 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    animation: avatarPulse 4s ease-in-out infinite, ceoFloat 7s ease-in-out infinite;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.6),
        inset 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.ceo-avatar .material-symbols-outlined {
    font-size: 120px;
    color: var(--primary-black);
    font-weight: 300;
}

/* Glow Rings */
.ceo-glow-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: glowRingExpand 4s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1.3s; }
.ring-3 { animation-delay: 2.6s; }

/* Floating Elements */
.ceo-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: elementFloat 6s ease-in-out infinite;
}

.floating-element .material-symbols-outlined {
    font-size: 28px;
    color: var(--primary-yellow);
    font-weight: 400;
}

.element-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 4.5s;
}

/* CEO Text Content */
.ceo-text-content {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.ceo-text-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.ceo-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: var(--primary-yellow);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'League Spartan', sans-serif;
}

.ceo-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ceo-name {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-yellow);
    margin: 0 0 30px 0;
    font-family: 'League Spartan', sans-serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.ceo-description {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

/* CEO Stats */
.ceo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0.8s; }
.stat-item:nth-child(2) { transition-delay: 1.0s; }
.stat-item:nth-child(3) { transition-delay: 1.2s; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-family: 'League Spartan', sans-serif;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: clamp(12px, 1.8vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 500;
}

/* CEO Quote */
.ceo-quote {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 1.4s;
}

.ceo-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

.ceo-quote blockquote {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 15px 0;
    font-style: italic;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}

.ceo-quote cite {
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--primary-yellow);
    font-style: normal;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
}

/* CEO Animations */
@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(212, 175, 55, 0.6),
            inset 0 0 0 3px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 80px rgba(212, 175, 55, 0.8),
            inset 0 0 0 3px rgba(255, 255, 255, 0.2);
    }
}

@keyframes ceoFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-10px) rotateZ(0.5deg);
    }
    75% {
        transform: translateY(6px) rotateZ(-0.5deg);
    }
}

@keyframes glowRingExpand {
    0% {
        width: 300px;
        height: 300px;
        opacity: 0.8;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
    75% {
        transform: translateY(10px) scale(0.95);
        opacity: 0.9;
    }
}

/* CEO Responsive */
@media (max-width: 1024px) {
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .ceo-image-container {
        width: 420px;
        height: 420px;
    }

    .ceo-image-placeholder {
        width: 320px;
        height: 320px;
    }

    .ceo-avatar .material-symbols-outlined {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 60px 20px;
    }

    .ceo-content {
        gap: 40px;
    }

    .ceo-image-container {
        width: 360px;
        height: 360px;
    }

    .ceo-image-placeholder {
        width: 280px;
        height: 280px;
    }

    .ceo-avatar .material-symbols-outlined {
        font-size: 80px;
    }

    .floating-element {
        width: 50px;
        height: 50px;
    }

    .floating-element .material-symbols-outlined {
        font-size: 24px;
    }

    .ceo-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ceo-section {
        padding: 40px 15px;
    }

    .ceo-image-container {
        width: 300px;
        height: 300px;
    }

    .ceo-image-placeholder {
        width: 220px;
        height: 220px;
    }

    .ceo-avatar .material-symbols-outlined {
        font-size: 60px;
    }

    .floating-element {
        width: 40px;
        height: 40px;
    }

    .floating-element .material-symbols-outlined {
        font-size: 20px;
    }

    .ceo-quote {
        padding: 20px;
    }
}

/* Agency Presentation Section */
.agency-section {
    min-height: 100vh;
    padding: 100px clamp(20px, 4vw, 60px);
    background: linear-gradient(135deg, 
        var(--primary-black) 0%, 
        var(--primary-dark-gray) 50%, 
        var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.agency-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.agency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
    min-height: 80vh;
}

.agency-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
    margin-left: 0;
    text-align: left;
}

.agency-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.agency-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'League Spartan', sans-serif;
}

.agency-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'League Spartan', sans-serif;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-yellow) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.agency-description {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

.agency-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    min-height: 80px;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1) { transition-delay: 0.2s; }
.feature-item:nth-child(2) { transition-delay: 0.4s; }
.feature-item:nth-child(3) { transition-delay: 0.6s; }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--primary-black);
    font-weight: 600;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-text h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--primary-white);
    margin: 0 0 8px 0;
    font-family: 'League Spartan', sans-serif;
    line-height: 1.2;
    min-height: 1.2em;
}

.feature-text p {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

/* Agency Visual Section */
.agency-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out 0.3s;
}

.agency-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.visual-container {
    position: relative;
    width: 500px;
    height: 500px;
    transform-style: preserve-3d;
}

/* Central Element */
.central-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    animation: centralPulse 3s ease-in-out infinite;
}

.logo-placeholder .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-black);
    font-weight: 600;
}

/* Pulse Rings */
.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1s; }
.ring-3 { animation-delay: 2s; }

/* Floating Orbs */
.floating-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.8) 0%, 
        rgba(255, 229, 92, 0.6) 100%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    animation: floatOrb 6s ease-in-out infinite;
}

.orb-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

/* Connecting Lines */
.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 50%, 
        transparent 100%);
    opacity: 0.6;
    animation: lineFlow 4s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 15%;
    width: 70%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    left: 10%;
    width: 80%;
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.line-3 {
    top: 40%;
    left: 70%;
    width: 25%;
    transform: rotate(70deg);
    animation-delay: 2s;
}

.line-4 {
    top: 75%;
    left: 25%;
    width: 50%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: iconFloat 5s ease-in-out infinite;
}

.icon-element .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary-yellow);
}

.icon-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.icon-2 {
    top: 80%;
    left: 10%;
    animation-delay: 1.25s;
}

.icon-3 {
    top: 45%;
    left: 5%;
    animation-delay: 2.5s;
}

.icon-4 {
    top: 65%;
    left: 85%;
    animation-delay: 3.75s;
}

/* Agency Animations */
@keyframes centralPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 70px rgba(212, 175, 55, 0.8);
    }
}

@keyframes pulseRing {
    0% {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(5px) rotate(-3deg);
        opacity: 0.9;
    }
}

/* Agency Responsive */
@media (max-width: 1024px) {
    .agency-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .visual-container {
        width: 400px;
        height: 400px;
    }

    .agency-visual {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .agency-section {
        padding: 60px 15px;
        min-height: 90vh;
    }

    .agency-content {
        gap: 40px;
    }

    .visual-container {
        width: 320px;
        height: 320px;
    }

    .agency-visual {
        min-height: 350px;
    }

    .floating-orb {
        width: 60px;
        height: 60px;
    }

    .logo-placeholder {
        width: 90px;
        height: 90px;
    }

    .logo-placeholder .material-symbols-outlined {
        font-size: 36px;
    }

    .icon-element {
        width: 40px;
        height: 40px;
    }

    .icon-element .material-symbols-outlined {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .agency-section {
        padding: 40px 10px;
    }

    .visual-container {
        width: 280px;
        height: 280px;
    }

    .agency-visual {
        min-height: 300px;
    }

    .agency-features {
        gap: 25px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon .material-symbols-outlined {
        font-size: 24px;
    }
}

/* Services Section */
.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px clamp(20px, 4vw, 60px);
    background: linear-gradient(135deg, 
        var(--primary-black) 0%, 
        var(--primary-dark-gray) 30%, 
        var(--primary-black) 70%, 
        var(--primary-dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    margin-bottom: 80px;
    margin-left: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.services-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-title h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-white);
    margin: 0 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, 
        var(--primary-white) 0%, 
        var(--primary-yellow) 50%, 
        var(--primary-white) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 50%, 
        transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item:nth-child(1) { transition-delay: 0.2s; }
.service-item:nth-child(2) { transition-delay: 0.4s; }
.service-item:nth-child(3) { transition-delay: 0.6s; }

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}

.service-item:hover .service-hover-effect {
    opacity: 1;
    transform: scale(1);
}

.service-item:hover .service-number {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-yellow);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'League Spartan', sans-serif;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 1;
}

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

.service-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-white);
    margin: 0 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-content p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

.service-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-icon .material-symbols-outlined {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
    border-radius: 20px;
}

/* Services Animations */
@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item {
        padding: 30px;
    }

    .services-title h2 {
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        margin-bottom: 60px;
        margin-left: 0;
    }

    .agency-text {
        margin-left: 0;
    }

    .services-title h2 {
        letter-spacing: 2px;
    }

    .service-item {
        padding: 25px;
    }

    .service-number {
        font-size: clamp(3rem, 12vw, 4rem);
        top: 15px;
        right: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .service-icon .material-symbols-outlined {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }

    .services-title {
        margin-bottom: 40px;
        margin-left: 0;
    }

    .agency-text {
        margin-left: 0;
    }

    .service-item {
        padding: 20px;
    }

    .services-grid {
        gap: 20px;
    }
}

/* Service Showcase Section */
.service-showcase {
    background: linear-gradient(180deg, 
        var(--primary-black) 0%, 
        var(--primary-dark-gray) 50%, 
        var(--primary-black) 100%);
    padding: 100px 0;
    position: relative;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 120px);
    align-items: center;
    min-height: 80vh;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.showcase-item.reverse .showcase-visual {
    order: -1;
}

/* Showcase Content */
.showcase-content {
    padding: 40px 0;
}

.showcase-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-text {
    color: var(--primary-yellow);
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.showcase-description {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

.showcase-cta {
    cursor: pointer;
}

.cta-label {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateX(10px);
}

.cta-link:hover .cta-arrow {
    transform: translateX(5px);
    background: var(--primary-yellow);
}

.cta-label {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.cta-arrow .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laptop Mockup */
.laptop-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.laptop-frame {
    width: 600px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: laptopFloat 8s ease-in-out infinite;
}

.laptop-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: #333;
    border-radius: 4px;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.laptop-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Video Styles */
.phone-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 1;
}

/* Laptop Video Styles */
.laptop-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.video-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-branding .brand-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-branding .video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-white);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.video-controls {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.video-title-small {
    font-size: 12px;
    color: var(--primary-white);
    font-family: 'League Spartan', sans-serif;
    font-weight: 500;
}

.video-duration {
    font-size: 11px;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
}

.content-overlay {
    padding: 40px 30px;
    color: var(--primary-black);
    text-align: center;
    width: 100%;
}

.brand-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 30px;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 3px;
}

.content-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-overlay p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    opacity: 0.8;
}

/* Strategy Content */
.strategy-content {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
}

.content-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-black);
    font-family: 'League Spartan', sans-serif;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 1px;
    font-family: 'League Spartan', sans-serif;
}

/* Video Mockup */
.video-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-frame {
    width: 500px;
    height: 280px;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    animation: videoFloat 8s ease-in-out infinite;
}

.video-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, var(--primary-yellow) 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        transparent 20%, 
        rgba(0, 0, 0, 0.2) 70%);
}

.video-overlay {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: playPulse 3s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-white);
}

.play-button .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary-black);
    margin-left: 4px;
}

.video-controls {
    width: 90%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.timeline {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
}

.timeline-progress {
    width: 35%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 2px;
    position: relative;
    animation: timelineProgress 6s ease-in-out infinite;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-title {
    color: var(--primary-white);
    font-size: 14px;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
}

.video-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-family: 'League Spartan', sans-serif;
}

.video-reflection {
    position: absolute;
    bottom: -40px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    border-radius: 12px;
    filter: blur(8px);
    opacity: 0.6;
}

/* Dashboard Mockup */
.dashboard-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dashboard-frame {
    width: 450px;
    height: 320px;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: dashboardFloat 7s ease-in-out infinite;
}

.dashboard-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-tabs {
    display: flex;
    gap: 20px;
}

.tab {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'League Spartan', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--primary-yellow);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: notificationPulse 2s ease-in-out infinite;
}

.header-actions .material-symbols-outlined {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-content {
    padding: 20px;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.metric-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.metric-trend {
    font-size: 11px;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
}

.metric-trend.positive {
    color: #4CAF50;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.campaign-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.campaign-status.active {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.campaign-status.paused {
    background: #FF9800;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.campaign-info {
    flex: 1;
}

.campaign-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-white);
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 2px;
}

.campaign-platform {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'League Spartan', sans-serif;
}

.campaign-performance {
    flex-shrink: 0;
}

.performance-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 20px;
}

.chart-bar {
    width: 3px;
    background: var(--primary-yellow);
    border-radius: 1px;
    animation: chartAnimation 3s ease-in-out infinite;
}

.performance-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
}

/* Animations */
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-10px) rotateZ(1deg);
    }
    75% {
        transform: translateY(5px) rotateZ(-1deg);
    }
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) rotateZ(0.5deg);
    }
    75% {
        transform: translateY(4px) rotateZ(-0.5deg);
    }
}

@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    33% {
        transform: translateY(-8px) rotateZ(0.5deg);
    }
    67% {
        transform: translateY(4px) rotateZ(-0.5deg);
    }
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-12px) rotateZ(1deg);
    }
}

@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes timelineProgress {
    0%, 100% {
        width: 35%;
    }
    50% {
        width: 65%;
    }
}

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

@keyframes chartAnimation {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Showcase Responsive */
@media (max-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        margin-bottom: 80px;
    }

    .showcase-item.reverse {
        display: flex;
        flex-direction: column;
    }

    .showcase-item.reverse .showcase-visual {
        order: 2;
    }
    
    .showcase-item.reverse .showcase-content {
        order: 1;
    }

    .phone-frame {
        width: 280px;
        height: 570px;
    }

    .laptop-frame {
        width: 500px;
        height: 330px;
    }

    .video-frame {
        width: 400px;
        height: 225px;
    }

    .dashboard-frame {
        width: 380px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .service-showcase {
        padding: 60px 0;
    }

    .showcase-item {
        margin-bottom: 60px;
        gap: 40px;
    }

    .showcase-item.reverse {
        display: flex;
        flex-direction: column;
    }

    .showcase-item.reverse .showcase-visual {
        order: 2;
    }
    
    .showcase-item.reverse .showcase-content {
        order: 1;
    }

    .phone-frame {
        width: 250px;
        height: 510px;
        border-radius: 35px;
    }

    .phone-screen {
        border-radius: 27px;
    }

    .laptop-frame {
        width: 400px;
        height: 270px;
        border-radius: 16px;
    }

    .laptop-screen {
        border-radius: 8px;
    }

    .video-frame {
        width: 350px;
        height: 200px;
    }

    .dashboard-frame {
        width: 320px;
        height: 230px;
    }

    .content-overlay {
        padding: 30px 20px;
    }

    .content-overlay h3 {
        font-size: 24px;
    }

    .content-overlay h4 {
        font-size: 20px;
    }

    .showcase-cta {
        justify-content: center;
    }
    
    .cta-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-showcase {
        padding: 40px 0;
    }

    .showcase-container {
        padding: 0 15px;
    }

    .showcase-item {
        margin-bottom: 50px;
        gap: 30px;
    }

    .showcase-item.reverse {
        display: flex;
        flex-direction: column;
    }

    .showcase-item.reverse .showcase-visual {
        order: 2;
    }
    
    .showcase-item.reverse .showcase-content {
        order: 1;
    }

    .phone-frame {
        width: 220px;
        height: 450px;
        border-radius: 30px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .laptop-frame {
        width: 320px;
        height: 210px;
        border-radius: 12px;
    }

    .laptop-screen {
        border-radius: 6px;
    }

    .video-frame {
        width: 300px;
        height: 170px;
    }

    .dashboard-frame {
        width: 280px;
        height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button .material-symbols-outlined {
        font-size: 30px;
    }

    .content-overlay {
        padding: 25px 15px;
    }

    .content-overlay h3 {
        font-size: 20px;
    }

    .content-overlay h4 {
        font-size: 18px;
    }

    .content-overlay p {
        font-size: 12px;
    }

    .content-stats {
        gap: 10px;
    }

    .stat {
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .campaign-elements {
        gap: 8px;
    }

    .element {
        padding: 10px 12px;
        font-size: 11px;
    }

    .tech-grid {
        gap: 8px;
    }

    .tech-item {
        padding: 12px;
        font-size: 12px;
    }
}

/* Trust & Reviews Section */
.trust-section {
    background: linear-gradient(180deg, 
        var(--primary-black) 0%, 
        var(--primary-dark-gray) 30%, 
        var(--primary-black) 70%, 
        var(--primary-dark-gray) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* Trust Logos Section */
.trust-logos {
    margin-bottom: 10px;
}

.trust-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.trust-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-title h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--primary-white);
    margin: 0 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.trust-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

/* Logo Carousel */
.logos-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 150px;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    transform: translateX(50px);
}


.carousel-track {
    margin-top: 60px;
    display: flex;
    gap: 80px;
    animation: logoScroll 35s linear infinite;
    width: max-content;
    will-change: transform;
    align-items: center;
    padding: 40px 0;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    opacity: 0;
    animation: logoFadeIn 1s ease-out forwards;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }
.logo-item:nth-child(5) { animation-delay: 0.5s; }
.logo-item:nth-child(6) { animation-delay: 0.6s; }
.logo-item:nth-child(7) { animation-delay: 0.7s; }
.logo-item:nth-child(8) { animation-delay: 0.8s; }
.logo-item:nth-child(9) { animation-delay: 0.9s; }
.logo-item:nth-child(10) { animation-delay: 1.0s; }
.logo-item:nth-child(11) { animation-delay: 1.1s; }
.logo-item:nth-child(12) { animation-delay: 1.2s; }
.logo-item:nth-child(13) { animation-delay: 1.3s; }

.logo-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(255, 255, 255, 0.08) 30%,
        rgba(212, 175, 55, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px) saturate(150%);
    cursor: pointer;
    position: relative;
    overflow: visible;
    padding: 25px;
    box-sizing: border-box;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(212, 175, 55, 0.6) 0deg,
        rgba(255, 215, 0, 0.4) 90deg,
        rgba(212, 175, 55, 0.8) 180deg,
        rgba(255, 215, 0, 0.4) 270deg,
        rgba(212, 175, 55, 0.6) 360deg
    );
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
}

.logo-placeholder:hover::before {
    opacity: 1;
}

.logo-placeholder:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(212, 175, 55, 0.06) 30%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(212, 175, 55, 0.06) 70%,
        rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.8);
    border-width: 3px;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 0 0 1px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.logo-image {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    object-fit: contain;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    
    border-radius: 50%;
}

.logo-placeholder:hover .logo-image {
    opacity: 1;
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%) brightness(1.05) contrast(1.2) saturate(1.2);
}

/* Fallback for text (if no image) */
.logo-placeholder .fa-brands {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.logo-placeholder:hover .fa-brands {
    color: var(--primary-yellow);
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* Trust logos: make images fill the whole circle */
.trust-logos .logo-placeholder {
    padding: 0;
}

.trust-logos .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Reviews Section */
.reviews-section {
    position: relative;
}

.reviews-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reviews-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews-title h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--primary-white);
    margin: 0 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.reviews-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.3s; }
.review-card:nth-child(3) { transition-delay: 0.5s; }
.review-card:nth-child(4) { transition-delay: 0.7s; }

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-card:hover .card-glow {
    opacity: 1;
    transform: scale(1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
    pointer-events: none;
}

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

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 25px;
}

.stars .material-symbols-outlined {
    font-size: 22px;
    color: var(--primary-yellow);
    font-variation-settings: 'FILL' 1, 'wght' 700;
    animation: starTwinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transition: all 0.3s ease;
}

.stars .filled-star {
    color: var(--primary-yellow);
    font-variation-settings: 'FILL' 1, 'wght' 900;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.4);
}

.stars .material-symbols-outlined:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

.stars .material-symbols-outlined:nth-child(1) { animation-delay: 0s; }
.stars .material-symbols-outlined:nth-child(2) { animation-delay: 0.3s; }
.stars .material-symbols-outlined:nth-child(3) { animation-delay: 0.6s; }
.stars .material-symbols-outlined:nth-child(4) { animation-delay: 0.9s; }
.stars .material-symbols-outlined:nth-child(5) { animation-delay: 1.2s; }

.review-card blockquote {
    font-size: clamp(16px, 2.2vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-style: italic;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    quotes: '"' '"';
}

.review-card blockquote::before {
    content: open-quote;
    font-size: 3em;
    color: var(--primary-yellow);
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.4em;
    opacity: 0.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.author-avatar .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary-black);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 4px;
    font-family: 'League Spartan', sans-serif;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}

/* Trust Animations */
@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.15) rotate(5deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        opacity: 0.85;
        transform: scale(1.1) rotate(3deg);
    }
}

/* Trust Responsive */
@media (max-width: 1024px) {
    .trust-section {
        padding: 80px 0;
    }

    .trust-logos {
        margin-bottom: 80px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 30px;
    }

    .logo-placeholder {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .logo-text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .logos-carousel {
        transform: none;
    }

    .trust-title {
        margin-bottom: 60px;
    }

    .reviews-title {
        margin-bottom: 60px;
    }

    .trust-logos {
        margin-bottom: 60px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }

    .review-card {
        padding: 30px;
    }

    .carousel-track {
        gap: 40px;
    }

    .logo-placeholder {
        width: 90px;
        height: 90px;
        padding: 12px;
    }

    .logo-text {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 40px 0;
    }

    .trust-container {
        padding: 0 15px;
    }

    .trust-title {
        margin-bottom: 40px;
    }

    .reviews-title {
        margin-bottom: 40px;
    }

    .trust-logos {
        margin-bottom: 40px;
    }

    .review-card {
        padding: 25px;
    }

    .carousel-track {
        gap: 30px;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .logo-text {
        font-size: 8px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-avatar .material-symbols-outlined {
        font-size: 20px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, 
        var(--primary-black) 0%, 
        var(--primary-dark-gray) 30%, 
        var(--primary-black) 70%, 
        rgba(15, 15, 25, 0.8) 85%,
        rgba(10, 10, 20, 0.6) 92%,
        rgba(5, 5, 15, 0.3) 97%,
        transparent 100%);
    padding: 150px 0 0 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px) 20px clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 10;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
}

.contact-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.contact-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-title h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-white);
    margin: 0 0 30px 0;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'League Spartan', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.contact-decorative {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-yellow), #FFE55C);
    border-radius: 50%;
    opacity: 0.6;
}

.element-1 {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    animation: floatElement1 8s ease-in-out infinite;
}

.element-2 {
    width: 15px;
    height: 15px;
    top: 30px;
    right: 20px;
    animation: floatElement2 6s ease-in-out infinite;
}

.element-3 {
    width: 25px;
    height: 25px;
    bottom: 10px;
    left: 50%;
    animation: floatElement3 7s ease-in-out infinite;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 120px;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateX(-50px);
    cursor: pointer;
    overflow: hidden;
}

.info-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-card:nth-child(1) { transition-delay: 0.1s; }
.info-card:nth-child(2) { transition-delay: 0.2s; }
.info-card:nth-child(3) { transition-delay: 0.3s; }
.info-card:nth-child(4) { transition-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.info-card:hover .card-glow {
    opacity: 1;
    transform: scale(1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-black);
    border-radius: 50%;
    z-index: 1;
}

.info-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--primary-yellow);
    position: relative;
    z-index: 2;
}

.info-details {
    flex: 1;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-white);
    margin: 0 0 8px 0;
    font-family: 'League Spartan', sans-serif;
}

.info-details p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
    font-family: 'League Spartan', sans-serif;
}

.info-action {
    font-size: 12px;
    color: var(--primary-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'League Spartan', sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-action {
    opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 60px 50px;
    backdrop-filter: blur(30px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.form-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--primary-white);
    margin: 0 0 15px 0;
    font-family: 'League Spartan', sans-serif;
}

.form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'League Spartan', sans-serif;
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: var(--primary-white);
    font-family: 'League Spartan', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), #FFE55C);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-underline,
.form-group select:focus + .input-underline,
.form-group textarea:focus + .input-underline {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-black);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    justify-self: center;
    min-width: 220px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.submit-btn:active .btn-ripple {
    opacity: 1;
    transform: scale(1);
}

/* Success Message */
.success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
}

.success-icon .material-symbols-outlined {
    font-size: 40px;
    color: white;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
    margin: 0 0 10px 0;
    font-family: 'League Spartan', sans-serif;
}

.success-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'League Spartan', sans-serif;
    margin: 0;
}

/* Contact CTA */
.compact-cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.compact-cta.visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.8s ease-out;
}

.compact-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.compact-cta h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--primary-white);
    margin: 0 0 20px 0;
    font-family: 'League Spartan', sans-serif;
    text-align: center;
}

.cta-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease-out;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-yellow);
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-badge {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE55C 100%);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary-black);
    margin: 0 auto;
    max-width: fit-content;
    animation: badgePulse 4s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.success-badge.visible {
    opacity: 1;
    transform: scale(1);
    animation: scaleIn 0.8s ease-out, badgePulse 4s ease-in-out infinite 0.8s;
}

.success-badge .material-symbols-outlined {
    font-size: 24px;
}

.badge-title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 12px;
    font-weight: 500;
    font-family: 'League Spartan', sans-serif;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .compact-cta {
        padding: 20px;
    }

    .cta-stats {
        gap: 15px;
    }

    .stat {
        padding: 8px 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .success-badge {
        padding: 12px 15px;
    }

    .badge-title {
        font-size: 14px;
    }

    .badge-subtitle {
        font-size: 10px;
    }
}

/* Background Effects */
.contact-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 60%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridShift 30s linear infinite;
}

/* Contact Animations */
@keyframes floatElement1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 25px) rotate(240deg); }
}

@keyframes floatElement2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 15px) rotate(180deg); }
}

@keyframes floatElement3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    75% { transform: translate(-30px, 10px) rotate(270deg); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 20px) scale(1.2); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(0.8); }
    75% { transform: translate(-50px, 30px) scale(1.1); }
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0 0 0;
    }
    
    .contact-container {
        padding: 0 clamp(20px, 4vw, 60px) 30px clamp(20px, 4vw, 60px);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-stats {
        justify-content: center;
    }

    .form-container {
        padding: 50px 40px;
    }
}

/* Remove underline under fields in Contact form */
.contact-section .input-underline {
    display: none !important;
}

.contact-section .form-group input:focus + .input-underline,
.contact-section .form-group select:focus + .input-underline,
.contact-section .form-group textarea:focus + .input-underline {
    width: 0 !important;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 0 0;
    }
    
    .contact-container {
        padding: 0 clamp(20px, 4vw, 60px) 25px clamp(20px, 4vw, 60px);
    }

    .contact-header {
        margin-bottom: 80px;
    }

    .contact-content {
        gap: 50px;
        margin-bottom: 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 40px 30px;
    }

    .contact-cta {
        padding: 40px 30px;
    }

    .cta-stats {
        gap: 30px;
    }

    .info-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 0 0;
    }
    
    .contact-container {
        padding: 0 clamp(20px, 4vw, 60px) 20px clamp(20px, 4vw, 60px);
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-content {
        gap: 40px;
        margin-bottom: 60px;
    }

    .form-container {
        padding: 35px 25px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* CEO-Friendly Enhancements */
@media (prefers-reduced-motion: reduce) {
    .logo-image,
    .tagline,
    .text-line,
    .idea-bubble,
    .floating-shape,
    .floating-orb,
    .pulse-ring,
    .icon-element,
    .line {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-yellow: #FFD700;
        --primary-black: #000000;
        --primary-white: #FFFFFF;
    }

    .elegant-particle {
        background: var(--primary-white);
    }

    .agency-title,
    .highlight-word {
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        -webkit-text-fill-color: var(--primary-yellow) !important;
        color: var(--primary-yellow) !important;
    }
}

/* Enhanced Premium Styling */
.animation-container,
.kpi-section,
.agency-section,
.services-section {
    position: relative;
}

.animation-container::before,
.kpi-section::before,
.agency-section::before,
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    z-index: 1;
}

/* Professional Typography Enhancement */
.agency-title,
.highlight-word,
h1, h2, h3, h4 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Thin golden separators between major sections */
.kpi-section,
.agency-section,
.services-section,
.service-showcase,
.trust-section,
.contact-section {
    position: relative;
}

.agency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 1100px);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-yellow) 50%,
        transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

.kpi-section::after,
.agency-section::after,
.services-section::after,
.service-showcase::after,
.trust-section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(92%, 1100px);
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 50%, 
        transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

/* Subtle Premium Animations */
.kpi-rectangle,
.cards label,
.feature-item {
    will-change: transform, opacity;
}

/* Enhanced Focus States for Accessibility */
input:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Navigation Sidebar */
.nav-sidebar {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 100%);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #f9f9f9;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.2) 35%,
        rgba(212, 175, 55, 0.1) 70%,
        transparent 100%);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.nav-toggle .material-symbols-outlined {
    font-size: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-sidebar.open .nav-toggle .material-symbols-outlined {
    transform: rotate(180deg);
}

.nav-toggle:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--primary-yellow);
}

.nav-links {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.nav-sidebar.open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #f9f9f9;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nav-link .link-text {
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-sidebar.open .link-text {
    opacity: 1;
    transform: translateX(0);
}

.nav-link:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--primary-yellow);
    transform: translateX(5px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.15),
        0 4px 10px rgba(212, 175, 55, 0.1);
}

.nav-link:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--primary-yellow);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.15),
        0 4px 10px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .nav-sidebar {
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(24px);
        flex-direction: row;
        gap: 14px;
        min-width: auto;
    }

    .nav-sidebar.open .nav-links {
        transform: translateX(-50%) translateY(0);
    }

    .nav-link {
        width: 56px;
        height: 56px;
        padding: 0;
        display: grid;
        place-items: center;
        border-radius: 16px;
    }

    .nav-link .material-symbols-outlined {
        font-size: 24px;
    }

    .nav-link .link-text {
        display: none;
    }

    .nav-link:hover {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Print Styles for CEO-Friendly Sharing */
@media print {
    body {
        margin-left: 0;
        color: #000;
        background: #fff;
    }

    .floating-orb,
    .pulse-ring,
    .connecting-lines,
    .floating-icons,
    .elegant-particles,
    .floating-ideas,
    .communication-elements {
        display: none;
    }

    .agency-title,
    .highlight-word {
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: #000 !important;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: auto;
    padding-top: 200px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(5, 5, 15, 0.3) 10%,
        rgba(10, 10, 20, 0.5) 25%,
        rgba(15, 15, 25, 0.7) 40%,
        rgba(20, 20, 30, 0.85) 55%,
        rgba(0, 0, 0, 0.95) 75%,
        rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-background svg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    transform: scaleY(2.2) scaleX(1.4);
    transform-origin: bottom;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.footer-socials {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.footer-socials a {
    font-size: 0; /* hide font icon size when using images */
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(20px) saturate(150%);
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.footer-social-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(1) contrast(1.05);
}

@media (max-width: 768px) {
    .footer-social-img { width: 62%; height: 62%; }
}

@media (max-width: 480px) {
    .footer-social-img { width: 64%; height: 64%; }
}

.footer-socials a::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 ease;
}

.footer-socials a:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.6);
}

.footer-socials a:hover::before {
    left: 100%;
}

.footer-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-yellow), 
        transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

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

.footer-legal {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 60px 20px 20px;
        gap: 30px;
    }
    
    .footer-socials {
        gap: 12px;
    }
    
    .footer-socials a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-legal {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 15px 15px;
        gap: 25px;
    }
    
    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-links {
        gap: 10px;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-links li {
        display: inline-flex;
        flex: 0 0 auto;
    }
    .footer-links a {
        display: inline-block;
        font-size: 13px;
        padding: 6px 0;
    }
}

/* Footer Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-socials a,
    .footer-links a {
        transition: none !important;
    }
    
    .footer-socials a::before {
        animation: none !important;
    }
}

/* Compact CTA Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* TV Mockup */
.tv-mockup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tv-frame {
    width: 500px;
    height: 300px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: tvFloat 6s ease-in-out infinite;
}

.tv-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.tv-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
}

.tv-stand {
    display: flex;
    justify-content: center;
    margin-top: -5px;
}

.tv-base {
    width: 120px;
    height: 40px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.tv-base::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 5px;
}

@keyframes tvFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) rotateZ(0.5deg);
    }
    75% {
        transform: translateY(4px) rotateZ(-0.5deg);
    }
}

/* TV Responsive */
@media (max-width: 768px) {
    .tv-frame {
        width: 350px;
        height: 210px;
    }
    
    .tv-base {
        width: 90px;
        height: 30px;
    }
    
    .tv-base::before {
        width: 25px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .tv-frame {
        width: 280px;
        height: 168px;
    }
    
    .tv-base {
        width: 70px;
        height: 25px;
    }
    
    .tv-base::before {
        width: 20px;
        height: 6px;
    }
}



/* Video Stats */
.video-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Video Stats Responsive */
@media (max-width: 768px) {
    .video-stats {
        gap: 24px;
        margin: 20px 0;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .video-stats {
        gap: 20px;
        margin: 16px 0;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* ... existing code ... */

/* Force horizontal footer links on small screens - MUST BE HORIZONTAL */
@media (max-width: 480px) {
	ul.footer-links,
	.footer ul.footer-links,
	.footer .footer-content ul.footer-links,
	.footer-content .footer-links {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: space-evenly !important;
		align-items: center !important;
		width: 100% !important;
		gap: 8px !important;
	}
	ul.footer-links > li,
	.footer ul.footer-links > li,
	.footer .footer-content ul.footer-links > li {
		display: inline-block !important;
		flex: 1 1 auto !important;
		text-align: center !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	ul.footer-links > li > a,
	.footer ul.footer-links > li > a {
		font-size: 12px !important;
		padding: 4px 2px !important;
		white-space: nowrap !important;
	}
}
